diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-16 21:23:34 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-16 21:23:34 (GMT) |
commit | 0a1efd0e4ce407b32854cfb8838ffbcf2a32481c (patch) | |
tree | 414fdb03e6f2968fd2bca2d42a0610addc61ebf2 /Misc | |
parent | 3360401980429e71aaf1a6d304451b3771900394 (diff) | |
download | cpython-0a1efd0e4ce407b32854cfb8838ffbcf2a32481c.zip cpython-0a1efd0e4ce407b32854cfb8838ffbcf2a32481c.tar.gz cpython-0a1efd0e4ce407b32854cfb8838ffbcf2a32481c.tar.bz2 |
Issue #6713: Improve performance of str(n) and repr(n) for integers n
(up to 3.1 times faster in tests), by special-casing base 10 in
_PyLong_Format.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #6713: Improve performance of integer -> string conversions. + - Issue #6846: Fix bug where bytearray.pop() returns negative integers. - Issue #6750: A text file opened with io.open() could duplicate its output |