diff options
author | Christian Heimes <christian@cheimes.de> | 2008-03-03 18:28:04 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-03-03 18:28:04 (GMT) |
commit | 608c1d8e87b20116011fe8fce634e980e115d514 (patch) | |
tree | e7204b4c31d30b37d308dda03cc03c032f5df08e /Misc/NEWS | |
parent | 1f178a6fac790f380b6830642b8c9afc0a3a9931 (diff) | |
download | cpython-608c1d8e87b20116011fe8fce634e980e115d514.zip cpython-608c1d8e87b20116011fe8fce634e980e115d514.tar.gz cpython-608c1d8e87b20116011fe8fce634e980e115d514.tar.bz2 |
Since abc._Abstract was replaces by a new type flags the regression test suite fails. I've added a new function inspect.isabstract(). Is the mmethod fine or should I check if object is a instance of type or subclass of object, too?
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -447,6 +447,8 @@ Core and builtins Library ------- +- Add inspect.isabstract(object) to fix bug #2223 + - Add a __format__ method to Decimal, to support PEP 3101. - Add a timing parameter when using trace.Trace to print out timestamps. |