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().