summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-10-22 11:22:50 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-10-22 11:22:50 (GMT)
commitaf7adad51d149e66ee3eb66c1765914f0fd7f905 (patch)
treebad46171fbca07a72f698e7a63e312fd952a5fd6 /Misc
parent42ead48dc17543c0d41d261fdf070a07f576c449 (diff)
downloadcpython-af7adad51d149e66ee3eb66c1765914f0fd7f905.zip
cpython-af7adad51d149e66ee3eb66c1765914f0fd7f905.tar.gz
cpython-af7adad51d149e66ee3eb66c1765914f0fd7f905.tar.bz2
Peephole constant folding had missed UNARY_POSITIVE.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 96ee2ac..8830b7d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Peephole constant folding had missed UNARY_POSITIVE.
+
- Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
fixes the problem of some exceptions being thrown at shutdown when the
interpreter is killed. Patch by Adam Olsen.