summaryrefslogtreecommitdiffstats
path: root/Modules/regexmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-19 16:31:57 (GMT)
committerGuido van Rossum <guido@python.org>1992-01-19 16:31:57 (GMT)
commit1cab95c14dd56988030a6899ac8934aeab63affc (patch)
tree38cb20ebf34f7cbff4144e722592519ae798d515 /Modules/regexmodule.c
parent44c8f69ff2e3b1bbfdcc63e5c86346d6a9f9c07d (diff)
downloadcpython-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.c5
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 */