summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-18 18:35:15 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-18 18:35:15 (GMT)
commit428f0641ec34902b0cce2cfdca833c79e6fdab7c (patch)
tree24f29c55a16cb1377b721253ec847c1885c70edb /Misc/NEWS
parent9091e3a423b1f7a21b1b191c65381abcb5702ab6 (diff)
downloadcpython-428f0641ec34902b0cce2cfdca833c79e6fdab7c.zip
cpython-428f0641ec34902b0cce2cfdca833c79e6fdab7c.tar.gz
cpython-428f0641ec34902b0cce2cfdca833c79e6fdab7c.tar.bz2
Remove the deprecated and useless "pend" argument from
PyFloat_FromString. (fixes bug #1650903)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7791a45..e7ac139 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,9 @@ TO DO
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__().