On Sun, Sep 04, 2005 at 09:51:11AM +0200, N. Volbers wrote: > def my_function(arg1, arg2, undolist=[]):
Have you checked to be sure that the default list argument is indeed safe? This is usually very error-prone, because the list is created and associated with the class, not the instance. Or is this just an example? Take care, -- Christian Robottom Reis | http://async.com.br/~kiko/ | [+55 16] 3376 0125 _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
