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

Well, the problem is that there are lots of other cases that
the fix also catches. For example:

>>> class C:
          class C:
              pass
    
>>> a = C.C()
>>> pickle.dumps(a,1)

I tend to think that catching this is more important than
handling reload() -- since reload() has lots of other
problems like this, it's better to blame reload() and not
try to fix it at the cost of other situations.
History
Date User Action Args
2007-08-23 13:55:46adminlinkissue451547 messages
2007-08-23 13:55:46admincreate