commit | 28746aba9bf636d03eb1c1c5f4550c6f2dbf5300 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sun Jul 09 22:14:42 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sun Jul 09 22:14:42 2006 +0000 |
tree | 02216272cf2d2e22496856213f9efe6e8996ce6b | |
parent | 6ec6ab02c33b1b879fef7058bcfecd4edaa66bd9 [diff] [blame] |
On 64 bit systems, int literals that use less than 64 bits are now ints rather than longs. This also fixes the test for eval(-sys.maxint - 1).
diff --git a/Misc/NEWS b/Misc/NEWS index bc34360..ff336c6 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -30,6 +30,9 @@ - Bug #1519018: 'as' is now validated properly in import statements. +- On 64 bit systems, int literals that use less than 64 bits are + now ints rather than longs. + Library -------