diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2006-07-09 21:19:29 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2006-07-09 21:19:29 (GMT) |
commit | 6ec6ab02c33b1b879fef7058bcfecd4edaa66bd9 (patch) | |
tree | 8774584d013bbdd1538b5ef8b9813805f2a8bf05 /Misc | |
parent | 0e07b60a4e44129cfafaeacac765cf957e2ea219 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |