diff options
author | Christian Heimes <christian@cheimes.de> | 2008-02-15 06:57:08 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-02-15 06:57:08 (GMT) |
commit | 2f0da53d28b316197a94919c96195a514acc668f (patch) | |
tree | 356767fd79a5b8ec669d9c88cffc86a534858f63 /Misc | |
parent | e247f0037f87d9e0a2582d0beb941fba6357454d (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |