summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-11 19:26:36 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-11 19:26:36 (GMT)
commitc4f3212abc7e927f9218a7c82fae9e5639e272bc (patch)
tree18d65bdc892a0593c32c4ea037a992f82abfe6f0 /Misc
parentb282b3d804165d704130fabf0f609d5dd46c1ed2 (diff)
parent31a655411a79b00517cdcd0a2752824d183db792 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index edafe29..ad3cad9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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