summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2006-07-09 21:19:29 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2006-07-09 21:19:29 (GMT)
commit6ec6ab02c33b1b879fef7058bcfecd4edaa66bd9 (patch)
tree8774584d013bbdd1538b5ef8b9813805f2a8bf05 /Misc
parent0e07b60a4e44129cfafaeacac765cf957e2ea219 (diff)
downloadcpython-6ec6ab02c33b1b879fef7058bcfecd4edaa66bd9.zip
cpython-6ec6ab02c33b1b879fef7058bcfecd4edaa66bd9.tar.gz
cpython-6ec6ab02c33b1b879fef7058bcfecd4edaa66bd9.tar.bz2
Fix SF bug 1441486: bad unary minus folding in compiler.
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 f01aff2..bc34360 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 beta 2?
Core and builtins
-----------------
+- Bug #1441486: The literal representation of -(sys.maxint - 1)
+ again evaluates to a int object, not a long.
+
- Bug #1501934: The scope of global variables that are locally assigned
using augmented assignment is now correctly determined.