From: Guido van Rossum Date: Sun, 19 Jan 1992 16:31:57 +0000 (+0000) Subject: Use Tatu Ylonen's copyleft-free reimplementation of X-Git-Tag: v0.9.8~568 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1cab95c14dd56988030a6899ac8934aeab63affc;p=thirdparty%2FPython%2Fcpython.git Use Tatu Ylonen's copyleft-free reimplementation of GNU regular expressions --- diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c index fade99fa030f..97578a0439e4 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 */