diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-16 22:10:56 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-16 22:10:56 (GMT) |
commit | aa2adc828a0583ee472d42a3b6a8964c822c7ee2 (patch) | |
tree | 48a90588c2477d91722480efaae8325b4c5919c7 /Misc | |
parent | 2920adb4df51e7c3c10f9671087037888f010483 (diff) | |
download | cpython-aa2adc828a0583ee472d42a3b6a8964c822c7ee2.zip cpython-aa2adc828a0583ee472d42a3b6a8964c822c7ee2.tar.gz cpython-aa2adc828a0583ee472d42a3b6a8964c822c7ee2.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. (Backport of r74851 from py3k.)
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 2.7 alpha 1 Core and Builtins ----------------- +- Issue #6713: Improve performance of integer -> string conversions. + - Issue #1590864: Fix potential deadlock when mixing threads and fork(). - Issue #6844: Do not emit DeprecationWarnings when accessing a "message" |