summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-03 13:12:44 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-03 13:12:44 (GMT)
commit04a29554c1fe0a06cdc657229bb4332eb017e3e9 (patch)
tree8b239108ffbb68db08170358790b14df39dae92f /Misc
parentee71f4a8a435eadef176b9a651d5245d7be03e51 (diff)
downloadcpython-04a29554c1fe0a06cdc657229bb4332eb017e3e9.zip
cpython-04a29554c1fe0a06cdc657229bb4332eb017e3e9.tar.gz
cpython-04a29554c1fe0a06cdc657229bb4332eb017e3e9.tar.bz2
#17032: The "global" in the "NameError: global name 'x' is not defined" error message has been removed. Patch by Ram Rachum.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 3c02427..efe81c2 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -969,6 +969,7 @@ Fernando Pérez
Pierre Quentel
Brian Quinlan
Anders Qvist
+Ram Rachum
Jérôme Radix
Burton Radons
Jeff Ramnani
diff --git a/Misc/NEWS b/Misc/NEWS
index a8392d5..0f787d2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #17032: The "global" in the "NameError: global name 'x' is not defined"
+ error message has been removed. Patch by Ram Rachum.
+
- Issue #17223: array module: Fix a crasher when converting an array containing
invalid characters (outside range [U+0000; U+10ffff]) to Unicode:
repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob.