[Python-3000] Metaclass syntax?

Greg Ewing greg.ewing at canterbury.ac.nz
Mon May 1 12:57:57 CEST 2006


Bill Birch wrote:

>    class[KindsOfTrees]  TheLarch(deciduous):
> 	   pass

I'd prefer not to put anything between 'class' and
the name being defined. Maybe

   class TheLarch(deciduous) [KindsOfTrees]:
     ...

--
Greg


More information about the Python-3000 mailing list