diff options
author | Guido van Rossum <guido@python.org> | 1992-01-19 16:31:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-01-19 16:31:57 (GMT) |
commit | 1cab95c14dd56988030a6899ac8934aeab63affc (patch) | |
tree | 38cb20ebf34f7cbff4144e722592519ae798d515 /Modules/regexmodule.c | |
parent | 44c8f69ff2e3b1bbfdcc63e5c86346d6a9f9c07d (diff) | |
download | cpython-1cab95c14dd56988030a6899ac8934aeab63affc.zip cpython-1cab95c14dd56988030a6899ac8934aeab63affc.tar.gz cpython-1cab95c14dd56988030a6899ac8934aeab63affc.tar.bz2 |
Use Tatu Ylonen's copyleft-free reimplementation of
GNU regular expressions
Diffstat (limited to 'Modules/regexmodule.c')
-rw-r--r-- | Modules/regexmodule.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c index fade99f..97578a0 100644 --- a/Modules/regexmodule.c +++ b/Modules/regexmodule.c @@ -29,12 +29,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ /* Regular expression objects */ -/* This uses GNU regex.c, from subdirectory regex !!! */ +/* This uses Tatu Ylonen's copyleft-free reimplementation of + GNU regular expressions */ #include "allobjects.h" #include "modsupport.h" -#include "regex.h" +#include "regexpr.h" static object *RegexError; /* Exception */ |