diff options
author | Thomas Heller <theller@ctypes.org> | 2008-01-24 13:08:54 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2008-01-24 13:08:54 (GMT) |
commit | fe528ebf6829b9be7cce38c7b15a3815a361faa2 (patch) | |
tree | 7198a0f1be145169f057e5186973ae935e85ba47 /Misc/NEWS | |
parent | e105f980460131d192d955fca0df474bcf1c642c (diff) | |
download | cpython-fe528ebf6829b9be7cce38c7b15a3815a361faa2.zip cpython-fe528ebf6829b9be7cce38c7b15a3815a361faa2.tar.gz cpython-fe528ebf6829b9be7cce38c7b15a3815a361faa2.tar.bz2 |
Invert the checks in get_[u]long and get_[u]longlong. The intent was
to not accept float types; the result was that integer-like objects
were not accepted.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -67,6 +67,9 @@ Core and builtins Library ------- +- The ctypes int types did not accept objects implementing + __int__() in the constructor. + - #1189216: Fix the zipfile module to work on archives with headers past the 2**31 byte boundary. |