diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-27 16:05:21 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-27 16:05:21 (GMT) |
commit | 4b9d473d0ac1714fb1687d85171d0b1e6b5b6ff8 (patch) | |
tree | 6a817d4f83b460e452a728d0be813bf9211eaeea /Misc | |
parent | 4780c9a0e0634ae0b5f5f508a9a8e4b8fac83a2c (diff) | |
download | cpython-4b9d473d0ac1714fb1687d85171d0b1e6b5b6ff8.zip cpython-4b9d473d0ac1714fb1687d85171d0b1e6b5b6ff8.tar.gz cpython-4b9d473d0ac1714fb1687d85171d0b1e6b5b6ff8.tar.bz2 |
Issue #6713: Improve decimal int -> string conversions. Thanks Gawain
Bolton for the suggestion and original patches.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -18,7 +18,8 @@ Core and Builtins - Issue #6922: Fix an infinite loop when trying to decode an invalid UTF-32 stream with a non-raising error handler like "replace" or "ignore". -- Issue #6713: Improve performance of integer -> string conversions. +- Issue #6713: Improve performance of base 10 int -> string and + long -> string conversions. - Issue #1590864: Fix potential deadlock when mixing threads and fork(). |