diff options
author | Guido van Rossum <guido@python.org> | 1998-04-03 21:13:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-03 21:13:31 (GMT) |
commit | 042ff9eb3afb3e0853bf650f5ab3742f592aa0aa (patch) | |
tree | 1865c64cc228d85433d3ee4ca910f7c05482201d /Modules/pcre-int.h | |
parent | 104be4a4a797bfc6f8982c81839736083fa54fac (diff) | |
download | cpython-042ff9eb3afb3e0853bf650f5ab3742f592aa0aa.zip cpython-042ff9eb3afb3e0853bf650f5ab3742f592aa0aa.tar.gz cpython-042ff9eb3afb3e0853bf650f5ab3742f592aa0aa.tar.bz2 |
AMK's latest
Diffstat (limited to 'Modules/pcre-int.h')
-rw-r--r-- | Modules/pcre-int.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/pcre-int.h b/Modules/pcre-int.h index 2c34dfe..07aeb84 100644 --- a/Modules/pcre-int.h +++ b/Modules/pcre-int.h @@ -3,7 +3,7 @@ *************************************************/ -#define PCRE_VERSION "1.04 22-Dec-1997" +#define PCRE_VERSION "1.07 16-Feb-1998" /* This is a library of functions to support regular expressions whose syntax @@ -12,7 +12,7 @@ the file Tech.Notes for some information on the internals. Written by: Philip Hazel <ph10@cam.ac.uk> - Copyright (c) 1997 University of Cambridge + Copyright (c) 1998 University of Cambridge ----------------------------------------------------------------------------- Permission is granted to anyone to use this software for any purpose on any @@ -192,6 +192,7 @@ enum { OP_CRMINRANGE, OP_CLASS, /* Match a character class */ + OP_NEGCLASS, /* Match a character class, specified negatively */ OP_CLASS_L, /* Match a character class */ OP_REF, /* Match a back reference */ |