Fractions.from_float() no longer loses precision with large integer inputs.
diff --git a/Misc/NEWS b/Misc/NEWS
index 02e5085..2606ac1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,9 @@
 Library
 -------
 
+- Fractions.from_float() no longer loses precision for integers to big to
+  cast as floats.
+
 - Issue 4790: The nsmallest() and nlargest() functions in the heapq module
   did unnecessary work in the common case where no key function was specified.