diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-14 18:48:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-14 18:48:17 (GMT) |
commit | 429b59ec6990dab19d5a0e0a91f55b5f0e850cf6 (patch) | |
tree | a703239002a5ed00ceb3d4dcb21d4ad145edc727 /Modules/sre.h | |
parent | 946cfc3e238bbd67ff436af5fd05414bbd2e5a08 (diff) | |
download | cpython-429b59ec6990dab19d5a0e0a91f55b5f0e850cf6.zip cpython-429b59ec6990dab19d5a0e0a91f55b5f0e850cf6.tar.gz cpython-429b59ec6990dab19d5a0e0a91f55b5f0e850cf6.tar.bz2 |
Issue #20998: Fixed re.fullmatch() of repeated single character pattern
with ignore case. Original patch by Matthew Barnett.
Diffstat (limited to 'Modules/sre.h')
-rw-r--r-- | Modules/sre.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/sre.h b/Modules/sre.h index 621e2d8..42fe28d 100644 --- a/Modules/sre.h +++ b/Modules/sre.h @@ -86,7 +86,6 @@ typedef struct { SRE_REPEAT *repeat; /* hooks */ SRE_TOLOWER_HOOK lower; - int match_all; } SRE_STATE; typedef struct { |