summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2012-12-28 07:42:11 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2012-12-28 07:42:11 (GMT)
commit0b386d524765d875fd5f7b6150219e5e5cd69abf (patch)
tree685ff50538e96318e1f9384448e2b5a5aedfb302 /Misc
parent1e4bd53a34a46e44a5e88a6ecc5ea4f102b94b6f (diff)
downloadcpython-0b386d524765d875fd5f7b6150219e5e5cd69abf.zip
cpython-0b386d524765d875fd5f7b6150219e5e5cd69abf.tar.gz
cpython-0b386d524765d875fd5f7b6150219e5e5cd69abf.tar.bz2
Issue #16761: Raise TypeError when int() called with base argument only.
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 3efa292..356e586 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #16761: Calling ``int()`` with *base* argument only now raises
+ TypeError.
+
- Issue #16759: Support the full DWORD (unsigned long) range in Reg2Py
when retreiving a REG_DWORD value. This corrects functions like
winreg.QueryValueEx that may have been returning truncated values.