commit | 4895af4ef1c91679e642c0fc81f584aecc26a7ea | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Dec 13 16:36:53 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Dec 13 16:36:53 2009 +0000 |
tree | e854f0d7770beff477fd7ee94540b2e15524bddd | |
parent | 2a08b42e9523b9642c72c15dffc41e8e442b4e72 [diff] [blame] |
fix the ignoring of __cmp__ method on metaclasses #7491
diff --git a/Misc/NEWS b/Misc/NEWS index c90b69f..76f2377 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,8 @@ Core and Builtins ----------------- +- Issue #7491: Metaclass's __cmp__ method was ignored. + - Issue #7466: segmentation fault when the garbage collector is called in the middle of populating a tuple. Patch by Florent Xicluna.