summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-03-03 18:28:04 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-03-03 18:28:04 (GMT)
commit608c1d8e87b20116011fe8fce634e980e115d514 (patch)
treee7204b4c31d30b37d308dda03cc03c032f5df08e /Misc
parent1f178a6fac790f380b6830642b8c9afc0a3a9931 (diff)
downloadcpython-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')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 208c350..43785cc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.