Comment 1 for bug 319792

Revision history for this message
Ray C Horn (mrpython94596) wrote :

Try this instead:

    def __repr__(self):
        return "clist(%s)" % (','.join([str(item) for item in self]))

This method fails whenever any items in a clist happens to be a clist instance.