summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-02-15 06:57:08 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-02-15 06:57:08 (GMT)
commit2f0da53d28b316197a94919c96195a514acc668f (patch)
tree356767fd79a5b8ec669d9c88cffc86a534858f63 /Misc
parente247f0037f87d9e0a2582d0beb941fba6357454d (diff)
downloadcpython-2f0da53d28b316197a94919c96195a514acc668f.zip
cpython-2f0da53d28b316197a94919c96195a514acc668f.tar.gz
cpython-2f0da53d28b316197a94919c96195a514acc668f.tar.bz2
Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 134ac7e..c4d64ce 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Fixed repr() and str() of complex numbers with infinity or nan as real or
+ imaginary part.
+
- Clear all free list during a gc.collect() of the highest generation in order
to allow pymalloc to free more arenas. Python may give back memory to the
OS earlier.