On Mon, May 7, 2012 at 9:54 PM, Georg Brandl <[email protected]> wrote: > As for build_class: at the moment the types module really only has types, > and to add build_class there is just about as weird as in operator IMO.
Oh no, types is definitely less weird - at least it's related to the type system, whereas the operator module is about operator syntax (attrgetter, itemgetter and index are at least related to the dot operator and subscripting syntax) Benjamin's suggestion of a class method on type may be a good one, though. Then the invocation (using all arguments) would be: mcl.build_class(name, bases, keywords, exec_body) Works for me, so unless someone else can see a problem I've missed, we'll go with that. Cheers, Nick. -- Nick Coghlan | [email protected] | Brisbane, Australia _______________________________________________ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
