diff options
author | yannvgn <hi@yannvgn.io> | 2019-07-31 18:50:39 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-07-31 18:50:39 (GMT) |
commit | 9f55551f3df238e58315e724e50cb0d574d75b94 (patch) | |
tree | 2f9e1111998e94e0c5b212e4250eeb5bbe13ac02 /Misc | |
parent | 1b29af83bc17e773b0c0d117f5fe1018fde46b0d (diff) | |
download | cpython-9f55551f3df238e58315e724e50cb0d574d75b94.zip cpython-9f55551f3df238e58315e724e50cb0d574d75b94.tar.gz cpython-9f55551f3df238e58315e724e50cb0d574d75b94.tar.bz2 |
bpo-37723: Fix performance regression on regular expression parsing. (GH-15030)
Improve performance of sre_parse._uniq function.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-07-31-16-49-01.bpo-37723.zq6tw8.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1708,6 +1708,7 @@ Michael Urman Hector Urtubia Lukas Vacek Ville Vainio +Yann Vaginay Andi Vajda Case Van Horsen John Mark Vandenberg diff --git a/Misc/NEWS.d/next/Library/2019-07-31-16-49-01.bpo-37723.zq6tw8.rst b/Misc/NEWS.d/next/Library/2019-07-31-16-49-01.bpo-37723.zq6tw8.rst new file mode 100644 index 0000000..65507bd --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-07-31-16-49-01.bpo-37723.zq6tw8.rst @@ -0,0 +1,2 @@ +Fix performance regression on regular expression parsing with huge +character sets. Patch by Yann Vaginay.
\ No newline at end of file |