Remove the deprecated and useless "pend" argument from
PyFloat_FromString. (fixes bug #1650903)
diff --git a/Misc/NEWS b/Misc/NEWS
index 7791a45..e7ac139 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,9 @@
 Core and Builtins
 -----------------
 
+- The long-deprecated argument "pend" of PyFloat_FromString() has been
+  removed.
+
 - The dir() function has been extended to call the __dir__() method on
   its argument, if it exists. If not, it will work like before. This allows
   customizing the output of dir() in the presence of a __getattr__().