diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-14 21:48:17 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-05-14 21:48:17 +0300 |
commit | 429b59ec6990dab19d5a0e0a91f55b5f0e850cf6 (patch) | |
tree | a703239002a5ed00ceb3d4dcb21d4ad145edc727 /Modules/sre.h | |
parent | 946cfc3e238bbd67ff436af5fd05414bbd2e5a08 (diff) | |
download | cpython-git-429b59ec6990dab19d5a0e0a91f55b5f0e850cf6.tar.gz |
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 621e2d88d5..42fe28d554 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 { |