summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-16 21:23:34 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-16 21:23:34 (GMT)
commit0a1efd0e4ce407b32854cfb8838ffbcf2a32481c (patch)
tree414fdb03e6f2968fd2bca2d42a0610addc61ebf2 /Misc
parent3360401980429e71aaf1a6d304451b3771900394 (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a90dbaa..fce5acd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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