summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-11 13:45:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-11 13:45:56 (GMT)
commit10a99b024df0d30911b198146d0206c8f6d0d6c7 (patch)
tree686d14ab6fbf451b81c4b952e9b2877f4b8dee32 /Misc
parent699cd9f7f175b4adb18577ae2e5faed329544713 (diff)
downloadcpython-10a99b024df0d30911b198146d0206c8f6d0d6c7.zip
cpython-10a99b024df0d30911b198146d0206c8f6d0d6c7.tar.gz
cpython-10a99b024df0d30911b198146d0206c8f6d0d6c7.tar.bz2
Issue #13150: The tokenize module doesn't compile large regular expressions at startup anymore.
Instead, the re module's standard caching does its work.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b4dbd6e..9a8e46c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -303,6 +303,9 @@ Core and Builtins
Library
-------
+- Issue #13150: The tokenize module doesn't compile large regular expressions
+ at startup anymore.
+
- Issue #11171: Fix distutils.sysconfig.get_makefile_filename when Python was
configured with different prefix and exec-prefix.