diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-17 22:27:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-17 22:27:54 (GMT) |
commit | 5e5fbb612d8109078c2777e1759277f9144616d0 (patch) | |
tree | 31cc5456eb32eb87d987bcdaea2a91a090947bf7 /Misc | |
parent | 59ce042766d95a1471b08241038b8e0f4a65743a (diff) | |
download | cpython-5e5fbb612d8109078c2777e1759277f9144616d0.zip cpython-5e5fbb612d8109078c2777e1759277f9144616d0.tar.gz cpython-5e5fbb612d8109078c2777e1759277f9144616d0.tar.bz2 |
fix inspect.isclass() on instances with a custom __getattr__ #1225107
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -137,6 +137,9 @@ Core and Builtins Library ------- +- Issue #1225107: inspect.isclass() returned True for instances with a custom + __getattr__. + - Issue #3997: zipfiles generated with more than 65536 files could not be opened with other applications. |