Issue 3008: hex/oct/bin can show floats exactly.

This commit is contained in:
Raymond Hettinger 2008-06-21 06:39:53 +00:00
parent db53c1eb68
commit e0e711446b
3 changed files with 90 additions and 2 deletions

View file

@ -17,6 +17,9 @@ Core and Builtins
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().