summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-09-08 00:40:07 (GMT)
committerGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-09-08 00:40:07 (GMT)
commitdd1c638b92ae1552207451c82ed95aa2c1f07201 (patch)
tree17c9785172126ca63631dc9207380ff7ac583671 /Misc
parentd61910c598876788c9b4bf0e116370bbfc5a2f85 (diff)
downloadcpython-dd1c638b92ae1552207451c82ed95aa2c1f07201.zip
cpython-dd1c638b92ae1552207451c82ed95aa2c1f07201.tar.gz
cpython-dd1c638b92ae1552207451c82ed95aa2c1f07201.tar.bz2
lib2to3.pgen3.driver.load_grammar() now creates a stable cache file
between runs given the same Grammar.txt input regardless of the hash randomization setting.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9398b8d..e4991c9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -67,6 +67,10 @@ Core and Builtins
Library
-------
+- lib2to3.pgen3.driver.load_grammar() now creates a stable cache file
+ between runs given the same Grammar.txt input regardless of the hash
+ randomization setting.
+
- Issue #27570: Avoid zero-length memcpy() etc calls with null source
pointers in the "ctypes" and "array" modules.