summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-12-29 16:08:34 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-12-29 16:08:34 (GMT)
commit3cc8f4b9693572e6ea423881cdbebfc981307b50 (patch)
treed4c387193a04e023c7a3dac2f79dac28536e7f7a /Misc
parent01f7ac3bb07ccca254af27f046ef64f9f5641e05 (diff)
downloadcpython-3cc8f4b9693572e6ea423881cdbebfc981307b50.zip
cpython-3cc8f4b9693572e6ea423881cdbebfc981307b50.tar.gz
cpython-3cc8f4b9693572e6ea423881cdbebfc981307b50.tar.bz2
make recording and reporting errors and nonlocal and global directives more robust (closes #25973)
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 bb0e056..0421c0a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #25973: Fix segfault when an invalid nonlocal statement binds a name
+ starting with two underscores.
+
- Issue #22995: Instances of extension types with a state that aren't
subclasses of list or dict and haven't implemented any pickle-related
methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__,