diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2012-12-28 07:42:11 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2012-12-28 07:42:11 (GMT) |
commit | 0b386d524765d875fd5f7b6150219e5e5cd69abf (patch) | |
tree | 685ff50538e96318e1f9384448e2b5a5aedfb302 /Misc | |
parent | 1e4bd53a34a46e44a5e88a6ecc5ea4f102b94b6f (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |