commit | 6ec6ab02c33b1b879fef7058bcfecd4edaa66bd9 | [log] [tgz] |
---|---|---|
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | Sun Jul 09 21:19:29 2006 +0000 |
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | Sun Jul 09 21:19:29 2006 +0000 |
tree | 8774584d013bbdd1538b5ef8b9813805f2a8bf05 | |
parent | 0e07b60a4e44129cfafaeacac765cf957e2ea219 [diff] [blame] |
Fix SF bug 1441486: bad unary minus folding in compiler.
diff --git a/Misc/NEWS b/Misc/NEWS index f01aff2..bc34360 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ 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.