summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-27 16:05:21 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-27 16:05:21 (GMT)
commit4b9d473d0ac1714fb1687d85171d0b1e6b5b6ff8 (patch)
tree6a817d4f83b460e452a728d0be813bf9211eaeea /Misc
parent4780c9a0e0634ae0b5f5f508a9a8e4b8fac83a2c (diff)
downloadcpython-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/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 15db199..e742ffc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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().