#17032: The "global" in the "NameError: global name 'x' is not defined" error message has been removed. Patch by Ram Rachum.
diff --git a/Misc/ACKS b/Misc/ACKS
index 3c02427..efe81c2 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -969,6 +969,7 @@
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 @@
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.