harold fellermann <[EMAIL PROTECTED]> wrote: ... > But, I cannot > even find out a way to set the doc string, when I CREATE a class using > type(name,bases,dict) ... At least this should be possible, IMHO.
>>> x=type('x',(),dict(__doc__='hi there'))
>>> x.__doc__
'hi there'
Alex
--
http://mail.python.org/mailman/listinfo/python-list
