summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2006-08-04 16:20:30 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2006-08-04 16:20:30 (GMT)
commit06ded09d4048bf44ce9b61c82494cf0a0825412c (patch)
tree5aa766517b8a84d0d4d048dcd3c62f78638da8e0 /Misc
parent45381938e940279df3962f6ebe01efb8375198a3 (diff)
downloadcpython-06ded09d4048bf44ce9b61c82494cf0a0825412c.zip
cpython-06ded09d4048bf44ce9b61c82494cf0a0825412c.tar.gz
cpython-06ded09d4048bf44ce9b61c82494cf0a0825412c.tar.bz2
Fix the 'compiler' package to generate correct code for MAKE_CLOSURE.
In the 2.5 development cycle, MAKE_CLOSURE as changed to take free variables as a tuple rather than as individual items on the stack. Closes patch #1534084.
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 c4904da..3c1ba7f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,9 @@ Library
- Bug #1531405, format_exception no longer raises an exception if
str(exception) raised an exception.
+- Fix a bug in the ``compiler`` package that caused invalid code to be
+ generated for nested functions.
+
Extension Modules
-----------------