diff options
author | Raymond Hettinger <python@rcn.com> | 2011-12-12 06:31:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-12-12 06:31:09 (GMT) |
commit | f537702732f9107da701794782bb9f037edb1200 (patch) | |
tree | 95b6bbb3d46b2d218864f2d4305a628c0fecff46 /Misc | |
parent | 8b59c23a54a053673c07c6939cccef096d856103 (diff) | |
download | cpython-f537702732f9107da701794782bb9f037edb1200.zip cpython-f537702732f9107da701794782bb9f037edb1200.tar.gz cpython-f537702732f9107da701794782bb9f037edb1200.tar.bz2 |
Issue #13573: The csv.writer now uses the repr() for floats rather than str().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -85,6 +85,9 @@ Library - tarfile.py: Correctly detect bzip2 compressed streams with blocksizes other than 900k. +- Issue #13573: The csv.writer now uses the repr() for floats rather than str(). + This allows floats to round-trip without loss of precision. + - Issue #13439: Fix many errors in turtle docstrings. - Issue #12856: Ensure child processes do not inherit the parent's random |