├── .github └── workflows │ ├── extensive-tests.yml │ └── test-and-build.yml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── automaton___reduce__.rst ├── automaton___sizeof__.rst ├── automaton_add_word.rst ├── automaton_clear.rst ├── automaton_constructor.rst ├── automaton_dump.rst ├── automaton_exists.rst ├── automaton_find_all.rst ├── automaton_get.rst ├── automaton_get_stats.rst ├── automaton_items.rst ├── automaton_iter.rst ├── automaton_iter_long.rst ├── automaton_keys.rst ├── automaton_len.rst ├── automaton_longest_prefix.rst ├── automaton_make_automaton.rst ├── automaton_match.rst ├── automaton_pop.rst ├── automaton_remove_word.rst ├── automaton_save.rst ├── automaton_search_iter.rst ├── automaton_search_iter_set.rst ├── automaton_values.rst ├── conf.py ├── index.rst ├── module.rst └── module_load.rst ├── etc ├── benchmarks │ ├── benchmark.py │ └── results │ │ ├── python2-westmere.txt │ │ ├── python3-broadwell-u.txt │ │ └── python3-xeon-u.txt ├── coverage │ ├── pyahocorasick.css │ └── pyahocorasick.html ├── dump2dot.py ├── py │ ├── README.rst │ ├── exportdot.py │ ├── pyahocorasick.py │ ├── test_issue_21.py │ └── test_unittests_pure_python.py └── update_inlinedoc.py ├── release_checklist.txt ├── runtest.sh ├── setup.cfg ├── setup.py ├── src ├── Automaton.c ├── Automaton.h ├── AutomatonItemsIter.c ├── AutomatonItemsIter.h ├── AutomatonSearchIter.c ├── AutomatonSearchIter.h ├── AutomatonSearchIterLong.c ├── AutomatonSearchIterLong.h ├── Automaton_pickle.c ├── allsources.c ├── common.h ├── custompickle │ ├── custompickle.c │ ├── custompickle.h │ ├── load │ │ ├── loadbuffer.c │ │ ├── loadbuffer.h │ │ ├── module_automaton_load.c │ │ └── module_automaton_load.h │ ├── pyhelpers.c │ ├── pyhelpers.h │ └── save │ │ ├── automaton_save.c │ │ ├── automaton_save.h │ │ ├── savebuffer.c │ │ └── savebuffer.h ├── cygwin.h ├── inline_doc.h ├── mingw.h ├── msinttypes │ ├── inttypes.h │ └── stdint.h ├── pickle │ ├── pickle.h │ ├── pickle_data.c │ └── pickle_data.h ├── posix.h ├── pyahocorasick.c ├── pycallfault │ ├── pycallfault.c │ └── pycallfault.h ├── slist.c ├── slist.h ├── trie.c ├── trie.h ├── trienode.c ├── trienode.h ├── utils.c └── windows.h ├── stamp └── .gitignore └── tests ├── generate_random_words.py ├── memdump_check.py ├── memdump_maxalloc.py ├── memdump_maxrealloc.py ├── pickle_stresstest.py ├── pyfault_check.py ├── pytestingutils.py ├── removeword_stresstest.py ├── test_basic.py ├── test_issue_10.py ├── test_issue_133.py ├── test_issue_19.py ├── test_issue_26.py ├── test_issue_5.py ├── test_issue_50.py ├── test_issue_53.py ├── test_issue_56.py ├── test_issue_8.py ├── test_issue_9.py ├── test_unit.py ├── test_unpickle.py ├── unittestlog_check.py ├── unresolved_bugs └── test_bug_81.py └── valgrind_check.py /.github/workflows/extensive-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/.github/workflows/extensive-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/.github/workflows/test-and-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /_build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/automaton___reduce__.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton___reduce__.rst -------------------------------------------------------------------------------- /docs/automaton___sizeof__.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton___sizeof__.rst -------------------------------------------------------------------------------- /docs/automaton_add_word.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_add_word.rst -------------------------------------------------------------------------------- /docs/automaton_clear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_clear.rst -------------------------------------------------------------------------------- /docs/automaton_constructor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_constructor.rst -------------------------------------------------------------------------------- /docs/automaton_dump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_dump.rst -------------------------------------------------------------------------------- /docs/automaton_exists.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_exists.rst -------------------------------------------------------------------------------- /docs/automaton_find_all.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_find_all.rst -------------------------------------------------------------------------------- /docs/automaton_get.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_get.rst -------------------------------------------------------------------------------- /docs/automaton_get_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_get_stats.rst -------------------------------------------------------------------------------- /docs/automaton_items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_items.rst -------------------------------------------------------------------------------- /docs/automaton_iter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_iter.rst -------------------------------------------------------------------------------- /docs/automaton_iter_long.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_iter_long.rst -------------------------------------------------------------------------------- /docs/automaton_keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_keys.rst -------------------------------------------------------------------------------- /docs/automaton_len.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_len.rst -------------------------------------------------------------------------------- /docs/automaton_longest_prefix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_longest_prefix.rst -------------------------------------------------------------------------------- /docs/automaton_make_automaton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_make_automaton.rst -------------------------------------------------------------------------------- /docs/automaton_match.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_match.rst -------------------------------------------------------------------------------- /docs/automaton_pop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_pop.rst -------------------------------------------------------------------------------- /docs/automaton_remove_word.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_remove_word.rst -------------------------------------------------------------------------------- /docs/automaton_save.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_save.rst -------------------------------------------------------------------------------- /docs/automaton_search_iter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_search_iter.rst -------------------------------------------------------------------------------- /docs/automaton_search_iter_set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_search_iter_set.rst -------------------------------------------------------------------------------- /docs/automaton_values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/automaton_values.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/module.rst -------------------------------------------------------------------------------- /docs/module_load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/docs/module_load.rst -------------------------------------------------------------------------------- /etc/benchmarks/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/benchmarks/benchmark.py -------------------------------------------------------------------------------- /etc/benchmarks/results/python2-westmere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/benchmarks/results/python2-westmere.txt -------------------------------------------------------------------------------- /etc/benchmarks/results/python3-broadwell-u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/benchmarks/results/python3-broadwell-u.txt -------------------------------------------------------------------------------- /etc/benchmarks/results/python3-xeon-u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/benchmarks/results/python3-xeon-u.txt -------------------------------------------------------------------------------- /etc/coverage/pyahocorasick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/coverage/pyahocorasick.css -------------------------------------------------------------------------------- /etc/coverage/pyahocorasick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/coverage/pyahocorasick.html -------------------------------------------------------------------------------- /etc/dump2dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/dump2dot.py -------------------------------------------------------------------------------- /etc/py/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/py/README.rst -------------------------------------------------------------------------------- /etc/py/exportdot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/py/exportdot.py -------------------------------------------------------------------------------- /etc/py/pyahocorasick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/py/pyahocorasick.py -------------------------------------------------------------------------------- /etc/py/test_issue_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/py/test_issue_21.py -------------------------------------------------------------------------------- /etc/py/test_unittests_pure_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/py/test_unittests_pure_python.py -------------------------------------------------------------------------------- /etc/update_inlinedoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/etc/update_inlinedoc.py -------------------------------------------------------------------------------- /release_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/release_checklist.txt -------------------------------------------------------------------------------- /runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/runtest.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/setup.py -------------------------------------------------------------------------------- /src/Automaton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/Automaton.c -------------------------------------------------------------------------------- /src/Automaton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/Automaton.h -------------------------------------------------------------------------------- /src/AutomatonItemsIter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/AutomatonItemsIter.c -------------------------------------------------------------------------------- /src/AutomatonItemsIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/AutomatonItemsIter.h -------------------------------------------------------------------------------- /src/AutomatonSearchIter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/AutomatonSearchIter.c -------------------------------------------------------------------------------- /src/AutomatonSearchIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/AutomatonSearchIter.h -------------------------------------------------------------------------------- /src/AutomatonSearchIterLong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/AutomatonSearchIterLong.c -------------------------------------------------------------------------------- /src/AutomatonSearchIterLong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/AutomatonSearchIterLong.h -------------------------------------------------------------------------------- /src/Automaton_pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/Automaton_pickle.c -------------------------------------------------------------------------------- /src/allsources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/allsources.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/common.h -------------------------------------------------------------------------------- /src/custompickle/custompickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/custompickle.c -------------------------------------------------------------------------------- /src/custompickle/custompickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/custompickle.h -------------------------------------------------------------------------------- /src/custompickle/load/loadbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/load/loadbuffer.c -------------------------------------------------------------------------------- /src/custompickle/load/loadbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/load/loadbuffer.h -------------------------------------------------------------------------------- /src/custompickle/load/module_automaton_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/load/module_automaton_load.c -------------------------------------------------------------------------------- /src/custompickle/load/module_automaton_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/load/module_automaton_load.h -------------------------------------------------------------------------------- /src/custompickle/pyhelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/pyhelpers.c -------------------------------------------------------------------------------- /src/custompickle/pyhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/pyhelpers.h -------------------------------------------------------------------------------- /src/custompickle/save/automaton_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/save/automaton_save.c -------------------------------------------------------------------------------- /src/custompickle/save/automaton_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/save/automaton_save.h -------------------------------------------------------------------------------- /src/custompickle/save/savebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/save/savebuffer.c -------------------------------------------------------------------------------- /src/custompickle/save/savebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/custompickle/save/savebuffer.h -------------------------------------------------------------------------------- /src/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/cygwin.h -------------------------------------------------------------------------------- /src/inline_doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/inline_doc.h -------------------------------------------------------------------------------- /src/mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/mingw.h -------------------------------------------------------------------------------- /src/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/msinttypes/inttypes.h -------------------------------------------------------------------------------- /src/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/msinttypes/stdint.h -------------------------------------------------------------------------------- /src/pickle/pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/pickle/pickle.h -------------------------------------------------------------------------------- /src/pickle/pickle_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/pickle/pickle_data.c -------------------------------------------------------------------------------- /src/pickle/pickle_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/pickle/pickle_data.h -------------------------------------------------------------------------------- /src/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/posix.h -------------------------------------------------------------------------------- /src/pyahocorasick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/pyahocorasick.c -------------------------------------------------------------------------------- /src/pycallfault/pycallfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/pycallfault/pycallfault.c -------------------------------------------------------------------------------- /src/pycallfault/pycallfault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/pycallfault/pycallfault.h -------------------------------------------------------------------------------- /src/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/slist.c -------------------------------------------------------------------------------- /src/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/slist.h -------------------------------------------------------------------------------- /src/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/trie.c -------------------------------------------------------------------------------- /src/trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/trie.h -------------------------------------------------------------------------------- /src/trienode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/trienode.c -------------------------------------------------------------------------------- /src/trienode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/trienode.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/src/windows.h -------------------------------------------------------------------------------- /stamp/.gitignore: -------------------------------------------------------------------------------- 1 | *_py? 2 | -------------------------------------------------------------------------------- /tests/generate_random_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/generate_random_words.py -------------------------------------------------------------------------------- /tests/memdump_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/memdump_check.py -------------------------------------------------------------------------------- /tests/memdump_maxalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/memdump_maxalloc.py -------------------------------------------------------------------------------- /tests/memdump_maxrealloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/memdump_maxrealloc.py -------------------------------------------------------------------------------- /tests/pickle_stresstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/pickle_stresstest.py -------------------------------------------------------------------------------- /tests/pyfault_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/pyfault_check.py -------------------------------------------------------------------------------- /tests/pytestingutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/pytestingutils.py -------------------------------------------------------------------------------- /tests/removeword_stresstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/removeword_stresstest.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_issue_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_10.py -------------------------------------------------------------------------------- /tests/test_issue_133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_133.py -------------------------------------------------------------------------------- /tests/test_issue_19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_19.py -------------------------------------------------------------------------------- /tests/test_issue_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_26.py -------------------------------------------------------------------------------- /tests/test_issue_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_5.py -------------------------------------------------------------------------------- /tests/test_issue_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_50.py -------------------------------------------------------------------------------- /tests/test_issue_53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_53.py -------------------------------------------------------------------------------- /tests/test_issue_56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_56.py -------------------------------------------------------------------------------- /tests/test_issue_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_8.py -------------------------------------------------------------------------------- /tests/test_issue_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_issue_9.py -------------------------------------------------------------------------------- /tests/test_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_unit.py -------------------------------------------------------------------------------- /tests/test_unpickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/test_unpickle.py -------------------------------------------------------------------------------- /tests/unittestlog_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/unittestlog_check.py -------------------------------------------------------------------------------- /tests/unresolved_bugs/test_bug_81.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/unresolved_bugs/test_bug_81.py -------------------------------------------------------------------------------- /tests/valgrind_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WojciechMula/pyahocorasick/HEAD/tests/valgrind_check.py --------------------------------------------------------------------------------