From: Georg Brandl Date: Sun, 18 Mar 2007 20:18:31 +0000 (+0000) Subject: NEWS item for PEP 3115. X-Git-Tag: v3.0a1~1113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=801dd736531f7d6db57a1dab80fe6daa37e0a0b0;p=thirdparty%2FPython%2Fcpython.git NEWS item for PEP 3115. --- diff --git a/Misc/NEWS b/Misc/NEWS index e7ac139ceb51..adaf180e6d47 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -28,6 +28,11 @@ TO DO Core and Builtins ----------------- +- PEP 3115: new metaclasses: the metaclass is now specified as a + keyword arg in the class statement, which can now use the full syntax of + a parameter list. Also, the metaclass can implement a __prepare__ function + which will be called to create the dictionary for the new class namespace. + - The long-deprecated argument "pend" of PyFloat_FromString() has been removed.