summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2009-02-07 00:54:41 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2009-02-07 00:54:41 (GMT)
commit92c3b2190bae6dd7844c83b6acefc0b89d2bc225 (patch)
tree0cb1e4a65dab9e1ee5f24409d6c758ebc44bb3ba /Misc
parent98c3b85bc4b64307fc12b53210f941c6458bccb5 (diff)
downloadcpython-92c3b2190bae6dd7844c83b6acefc0b89d2bc225.zip
cpython-92c3b2190bae6dd7844c83b6acefc0b89d2bc225.tar.gz
cpython-92c3b2190bae6dd7844c83b6acefc0b89d2bc225.tar.bz2
Issue #999042: The Python compiler now handles explict global statements
correctly (should be assigned using STORE_GLOBAL opcode). This was done by having the system table differentiate between explict and implicit globals.
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 96256f5..8d33ee8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -410,6 +410,9 @@ Library
protocol numbers are supplied outside the allowed 0-65536 range on bind()
and getservbyport().
+- Issue #999042: The Python compiler now handles explict global statements
+ correctly (should be assigned using STORE_GLOBAL opcode).
+
Tools/Demos
-----------