harold fellermann <harold.fellermann at upf.edu> 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