diff options
author | Raymond Hettinger <python@rcn.com> | 2005-06-29 23:29:56 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-06-29 23:29:56 (GMT) |
commit | 3296e696db4e46f63f7a5348ac977b2b0a32ecbc (patch) | |
tree | 1d3c84dcc09208485d3ecc8e4749fa8bdb2786a1 /Misc | |
parent | d4128f397dbfe400e34d399d6b4595240b3de546 (diff) | |
download | cpython-3296e696db4e46f63f7a5348ac977b2b0a32ecbc.zip cpython-3296e696db4e46f63f7a5348ac977b2b0a32ecbc.tar.gz cpython-3296e696db4e46f63f7a5348ac977b2b0a32ecbc.tar.bz2 |
SF bug #1224347: int/long unification and hex()
Hex longs now print with lowercase letters like their int counterparts.
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 alpha 1? Core and builtins ----------------- +- SF bug #1224347: hex longs now print with lowercase letters just + like their int counterparts. + - SF bug #1163563: the original fix for bug #1010677 ("thread Module Breaks PyGILState_Ensure()") broke badly in the case of multiple interpreter states; back out that fix and do a better job (see |