summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-14 13:11:17 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-14 13:11:17 (GMT)
commit7e2b870b8593233306594237cd5286c60ec7a1e1 (patch)
tree612fa432059cc31904217e4bf55bed6c124576d0 /Misc
parent2463001a15f0f1dab1b82e71f3d37b1bc7bc701f (diff)
parent0d441119f5eb6437f6145e89e0963f75494d8a3f (diff)
downloadcpython-7e2b870b8593233306594237cd5286c60ec7a1e1.zip
cpython-7e2b870b8593233306594237cd5286c60ec7a1e1.tar.gz
cpython-7e2b870b8593233306594237cd5286c60ec7a1e1.tar.bz2
Issue #25388: Fixed tokenizer crash when processing undecodable source code
with a null byte.
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 24f0509..102f64d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #25388: Fixed tokenizer crash when processing undecodable source code
+ with a null byte.
+
- Issue #25462: The hash of the key now is calculated only once in most
operations in C implementation of OrderedDict.