We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40e69c2 commit ce60d62Copy full SHA for ce60d62
ahocorasick/__init__.py
@@ -4,7 +4,7 @@
4
5
class Node(object):
6
"""
7
- 节点的抽象
+ node
8
9
def __init__(self, str='', is_root=False):
10
self._next_p = {}
@@ -74,7 +74,7 @@ def node_append(keyword):
74
75
def _make(self):
76
77
- 构造Ac树
+ build ac tree
78
:return:
79
80
for _level, node in self._node_all:
setup.py
@@ -11,7 +11,7 @@
11
setup(
12
name="ahocorasick-python",
13
packages=["ahocorasick"],
14
- version='0.0.7',
+ version='0.0.8',
15
description="this project is a aho-corasick automaton implementation by python",
16
long_description=long_description,
17
long_description_content_type="text/markdown",
0 commit comments