summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-14 13:10:35 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-14 13:10:35 (GMT)
commit0d441119f5eb6437f6145e89e0963f75494d8a3f (patch)
treed8504a540716a9399777ba8f4a65ac7c1ef25ddb /Misc
parent806fb2540520839812887140fa1d4ba2e60ecc5e (diff)
downloadcpython-0d441119f5eb6437f6145e89e0963f75494d8a3f.zip
cpython-0d441119f5eb6437f6145e89e0963f75494d8a3f.tar.gz
cpython-0d441119f5eb6437f6145e89e0963f75494d8a3f.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 ec2b4af..1390642 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #25388: Fixed tokenizer crash when processing undecodable source code
+ with a null byte.
+
- Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
rejects builtin types with not defined __new__.