Skip to content
Snippets Groups Projects
Commit a7747ed2 authored by Antonio Terceiro's avatar Antonio Terceiro
Browse files

New upstream version 0.1.20200714

parent 97037443
No related branches found
No related tags found
No related merge requests found
Showing
with 30212 additions and 19637 deletions
include regex_2/*.c
include regex_2/*.h
include regex_2/*.py
include regex_3/*.c
include regex_3/*.h
include regex_3/*.py
include docs/*.*
include tools/*.py
This diff is collapsed.
regex is an alternative to the re package in the Python standard library. It is
intended to act as a drop in replacement. regex is supported on multiple
versions of Python.
For a full list of features see docs/Features.rst.
To install from PyPI run
python -m pip install regex
To build and install regex for your default Python run
python setup.py install
To install regex for a specific version run setup.py with that interpreter, e.g.
python3.7 setup.py install
README.rst 0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
File moved
This diff is collapsed.
MANIFEST.in
README.rst
setup.py
docs/Features.html
docs/Features.rst
docs/UnicodeProperties.rst
regex.egg-info/PKG-INFO
regex.egg-info/SOURCES.txt
regex.egg-info/dependency_links.txt
regex.egg-info/top_level.txt
regex_2/__init__.py
regex_2/_regex.c
regex_2/_regex.h
regex_2/_regex_core.py
regex_2/_regex_unicode.c
regex_2/_regex_unicode.h
regex_2/regex.py
regex_2/test_regex.py
regex_3/__init__.py
regex_3/_regex.c
regex_3/_regex.h
regex_3/_regex_core.py
regex_3/_regex_unicode.c
regex_3/_regex_unicode.h
regex_3/regex.py
regex_3/test_regex.py
tools/build_regex_unicode.py
\ No newline at end of file
regex
File moved
This diff is collapsed.
......@@ -98,29 +98,23 @@
#define RE_OP_STRING_IGN 77
#define RE_OP_STRING_IGN_REV 78
#define RE_OP_STRING_REV 79
#define RE_OP_STRING_SET 80
#define RE_OP_STRING_SET_FLD 81
#define RE_OP_STRING_SET_FLD_REV 82
#define RE_OP_STRING_SET_IGN 83
#define RE_OP_STRING_SET_IGN_REV 84
#define RE_OP_STRING_SET_REV 85
#define RE_OP_FUZZY_EXT 86
#define RE_OP_BODY_END 87
#define RE_OP_BODY_START 88
#define RE_OP_END_ATOMIC 89
#define RE_OP_END_CONDITIONAL 90
#define RE_OP_END_FUZZY 91
#define RE_OP_END_GREEDY_REPEAT 92
#define RE_OP_END_GROUP 93
#define RE_OP_END_LAZY_REPEAT 94
#define RE_OP_END_LOOKAROUND 95
#define RE_OP_FUZZY_INSERT 96
#define RE_OP_GREEDY_REPEAT_ONE 97
#define RE_OP_GROUP_RETURN 98
#define RE_OP_LAZY_REPEAT_ONE 99
#define RE_OP_MATCH_BODY 100
#define RE_OP_MATCH_TAIL 101
#define RE_OP_START_GROUP 102
#define RE_OP_FUZZY_EXT 80
#define RE_OP_BODY_END 81
#define RE_OP_BODY_START 82
#define RE_OP_END_ATOMIC 83
#define RE_OP_END_CONDITIONAL 84
#define RE_OP_END_FUZZY 85
#define RE_OP_END_GREEDY_REPEAT 86
#define RE_OP_END_GROUP 87
#define RE_OP_END_LAZY_REPEAT 88
#define RE_OP_END_LOOKAROUND 89
#define RE_OP_FUZZY_INSERT 90
#define RE_OP_GREEDY_REPEAT_ONE 91
#define RE_OP_GROUP_RETURN 92
#define RE_OP_LAZY_REPEAT_ONE 93
#define RE_OP_MATCH_BODY 94
#define RE_OP_MATCH_TAIL 95
#define RE_OP_START_GROUP 96
char* re_op_text[] = {
"RE_OP_FAILURE",
......@@ -203,12 +197,6 @@ char* re_op_text[] = {
"RE_OP_STRING_IGN",
"RE_OP_STRING_IGN_REV",
"RE_OP_STRING_REV",
"RE_OP_STRING_SET",
"RE_OP_STRING_SET_FLD",
"RE_OP_STRING_SET_FLD_REV",
"RE_OP_STRING_SET_IGN",
"RE_OP_STRING_SET_IGN_REV",
"RE_OP_STRING_SET_REV",
"RE_OP_FUZZY_EXT",
"RE_OP_BODY_END",
"RE_OP_BODY_START",
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment