diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-11 19:26:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-11 19:26:36 (GMT) |
commit | c4f3212abc7e927f9218a7c82fae9e5639e272bc (patch) | |
tree | 18d65bdc892a0593c32c4ea037a992f82abfe6f0 /Misc | |
parent | b282b3d804165d704130fabf0f609d5dd46c1ed2 (diff) | |
parent | 31a655411a79b00517cdcd0a2752824d183db792 (diff) | |
download | cpython-c4f3212abc7e927f9218a7c82fae9e5639e272bc.zip cpython-c4f3212abc7e927f9218a7c82fae9e5639e272bc.tar.gz cpython-c4f3212abc7e927f9218a7c82fae9e5639e272bc.tar.bz2 |
Issue #17576: Deprecation warning emitted now when __int__() or __index__()
return not int instance. Introduced _PyLong_FromNbInt() and refactored
PyLong_As*() functions.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: 2014-01-05 Core and Builtins ----------------- +- Issue #17576: Deprecation warning emitted now when __int__() or __index__() + return not int instance. + - Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. - Issue #19736: Add module-level statvfs constants defined for GNU/glibc |