]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use Tatu Ylonen's copyleft-free reimplementation of
authorGuido van Rossum <guido@python.org>
Sun, 19 Jan 1992 16:31:57 +0000 (16:31 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 19 Jan 1992 16:31:57 +0000 (16:31 +0000)
GNU regular expressions

Modules/regexmodule.c

index fade99fa030f2ccbfba44dccbe4444e431532649..97578a0439e470c32d0955f4f2863108fe2f5546 100644 (file)
@@ -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 */