Author mamrhein
Recipients
Date 2006-07-03.13:22:42
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In order to reduce the pickle footprint of UUIDs I
would add a __reduce__ method to class UUID like

    def __reduce__(self):
        return (uuid, (self.int,))

together with a helper function (at module level) like

def uuid(i):
    return UUID(int=i)
History
Date User Action Args
2007-08-23 15:53:15adminlinkissue1516327 messages
2007-08-23 15:53:15admincreate