summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-01-27 17:43:02 (GMT)
committerGeorg Brandl <georg@python.org>2007-01-27 17:43:02 (GMT)
commitab49684f550ce6b12614b8a329f4d280e20e1277 (patch)
treef813125ca6d4bbda770e4e3566e470069f917f09 /Misc
parent7a7cbae77b417b855bdfe5f7c536893cbefcbb1d (diff)
downloadcpython-ab49684f550ce6b12614b8a329f4d280e20e1277.zip
cpython-ab49684f550ce6b12614b8a329f4d280e20e1277.tar.gz
cpython-ab49684f550ce6b12614b8a329f4d280e20e1277.tar.bz2
Patch #1638243: the compiler package is now able to correctly compile
a with statement; previously, executing code containing a with statement compiled by the compiler package crashed the interpreter.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8bbae96..82c3d64 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,6 +123,10 @@ Core and builtins
Library
-------
+- Patch #1638243: the compiler package is now able to correctly compile
+ a with statement; previously, executing code containing a with statement
+ compiled by the compiler package crashed the interpreter.
+
- Bug #1643943: Fix time.strptime's support for the %U directive.
- Patch #1643874: memory leak in ctypes fixed.