From: Guido van Rossum Date: Fri, 23 Mar 2007 19:39:01 +0000 (+0000) Subject: Add note about type.__init__(). X-Git-Tag: v2.6a1~1939 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=234b1ff24fb60f5002a4a0d68e0f29d493de0863;p=thirdparty%2FPython%2Fcpython.git Add note about type.__init__(). --- diff --git a/Misc/NEWS b/Misc/NEWS index dd8f51ef77a5..791e9549732f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -22,7 +22,8 @@ Core and builtins either allows excess arguments is when it is not overridden and the other one is. For backwards compatibility, when both are overridden, it is a deprecation warning (for now; maybe a Py3k - warning later). + warning later). Also, type.__init__() insists on the same signature + as supported by type.__new__(). - Patch #1675423: PyComplex_AsCComplex() now tries to convert an object to complex using its __complex__() method before falling back to the