]> granicus.if.org Git - python/commit
"Fix" for SF bug #520644: __slots__ are not pickled.
authorGuido van Rossum <guido@python.org>
Thu, 14 Mar 2002 23:03:14 +0000 (23:03 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 14 Mar 2002 23:03:14 +0000 (23:03 +0000)
commit0628dcfe1faac4926505f8c4cb1905d7700d1bf1
treed26abd8cbc07b888f6786938fb99e22214f4ff3d
parent06b711cb6dda316753c2d405a5b1091f04322996
"Fix" for SF bug #520644: __slots__ are not pickled.

As promised in my response to the bug report, I'm not really fixing
it; in fact, one could argule over what the proper fix should do.
Instead, I'm adding a little magic that raises TypeError if you try to
pickle an instance of a class that has __slots__ but doesn't define or
override __getstate__.  This is done by adding a bozo __getstate__
that always raises TypeError.
Objects/typeobject.c