Author gvanrossum
Recipients
Date 2002-10-30.23:47:17
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=6380

The problem really lies with reload(); pickle is just one of
the many victims. E.g. this fails too:

import foo
x = foo.C()
assert isinstance(x, foo.C) # OK
reload(foo)
assert isinstance(x, foo.C) # Fails

If you have a suggestion for how to warn about reload(),
please submit a *new* bug report with Category set to
Documentation.
History
Date User Action Args
2007-08-23 13:55:46adminlinkissue451547 messages
2007-08-23 13:55:46admincreate