summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-30 19:40:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-30 19:40:49 (GMT)
commit42bf8fc90158072ff0136a7c8bfa0b0dba3a70d6 (patch)
tree2237807f95c5c65e804eae9e82b5305f74f283e1 /Misc
parentbeb652ccc1a7b1b1934012b8fdfdf592e780cbc1 (diff)
downloadcpython-42bf8fc90158072ff0136a7c8bfa0b0dba3a70d6.zip
cpython-42bf8fc90158072ff0136a7c8bfa0b0dba3a70d6.tar.gz
cpython-42bf8fc90158072ff0136a7c8bfa0b0dba3a70d6.tar.bz2
Issue #25961: Disallowed null characters in the type name.
Simplified testing for null characters in __name__ setter.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0421c0a..6d24252 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #25961: Disallowed null characters in the type name.
+
- Issue #25973: Fix segfault when an invalid nonlocal statement binds a name
starting with two underscores.