diff options
author | Georg Brandl <georg@python.org> | 2007-03-18 18:35:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-18 18:35:15 (GMT) |
commit | 428f0641ec34902b0cce2cfdca833c79e6fdab7c (patch) | |
tree | 24f29c55a16cb1377b721253ec847c1885c70edb /Misc/NEWS | |
parent | 9091e3a423b1f7a21b1b191c65381abcb5702ab6 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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__(). |