This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gsakkis
Recipients
Date 2005-10-14.06:38:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
>>> import pickle
>>> class Foo(set):
...     def __getstate__(self): assert False

>>> pickle.dumps(Foo())
# doesn't raise AssertionError

The same happens with frozenset.
History
Date User Action Args
2007-08-23 14:35:27adminlinkissue1326448 messages
2007-08-23 14:35:27admincreate