commit | e0e711446ba62b8b07bc7a14eb53674c9b0a4862 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Jun 21 06:39:53 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Jun 21 06:39:53 2008 +0000 |
tree | fab7f820773931d3d4a6c81948afe63ce1d6746a | |
parent | db53c1eb68ff19db167e80bcf02cd9984d25f022 [diff] [blame] |
Issue 3008: hex/oct/bin can show floats exactly.
diff --git a/Misc/NEWS b/Misc/NEWS index 96d45af..2825198 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -17,6 +17,9 @@ slice(None, 10, -1).indices(10) returns (9, 9, -1) instead of (9, 10, -1). +- Issue 3008: hex(), oct(), and bin() can now create exact reprs + for floats. + - Make bin() implementation parallel oct() and hex().