Skip to content

Commit ce60d62

Browse files
pull request code merge and 0.0.8 version release.
1 parent 40e69c2 commit ce60d62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ahocorasick/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class Node(object):
66
"""
7-
节点的抽象
7+
node
88
"""
99
def __init__(self, str='', is_root=False):
1010
self._next_p = {}
@@ -74,7 +74,7 @@ def node_append(keyword):
7474

7575
def _make(self):
7676
"""
77-
构造Ac树
77+
build ac tree
7878
:return:
7979
"""
8080
for _level, node in self._node_all:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name="ahocorasick-python",
1313
packages=["ahocorasick"],
14-
version='0.0.7',
14+
version='0.0.8',
1515
description="this project is a aho-corasick automaton implementation by python",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)