diff options
author | Guido van Rossum <guido@python.org> | 1998-05-07 15:32:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-05-07 15:32:44 (GMT) |
commit | dda6696be67bedf4d5547e8bf597cb7cd4769c69 (patch) | |
tree | c57b0abedb711efdbf9ce481a43f52da77b4afe4 /Modules/pcre-int.h | |
parent | 0ef1b079a2a2c2c5ca2ffd8c8bd22f1145b17af4 (diff) | |
download | cpython-dda6696be67bedf4d5547e8bf597cb7cd4769c69.zip cpython-dda6696be67bedf4d5547e8bf597cb7cd4769c69.tar.gz cpython-dda6696be67bedf4d5547e8bf597cb7cd4769c69.tar.bz2 |
AMK's revised version of the previous patch.
Diffstat (limited to 'Modules/pcre-int.h')
-rw-r--r-- | Modules/pcre-int.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Modules/pcre-int.h b/Modules/pcre-int.h index 07aeb84..ceae8eb 100644 --- a/Modules/pcre-int.h +++ b/Modules/pcre-int.h @@ -3,7 +3,7 @@ *************************************************/ -#define PCRE_VERSION "1.07 16-Feb-1998" +#define PCRE_VERSION "1.09 28-Apr-1998" /* This is a library of functions to support regular expressions whose syntax @@ -80,11 +80,12 @@ only some permitted at run or study time. */ #ifdef FOR_PYTHON #define PUBLIC_OPTIONS \ (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ - PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_LOCALE) + PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY| \ + PCRE_LOCALE) #else #define PUBLIC_OPTIONS \ (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ - PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA) + PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY) #endif #define PUBLIC_EXEC_OPTIONS \ (PCRE_CASELESS|PCRE_ANCHORED|PCRE_MULTILINE|PCRE_NOTBOL|PCRE_NOTEOL| \ |