Message134

Author bckfnn
Recipients
Date 2000-11-18.19:29:21
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The items() method in does not handle items which is so called deleted 
with __setitem__(key, null). The items() will return a tuple (key, null)
which cause strange NameError when used in 

   for k,v in foo.__dict__.item():
      ..

The problem was initially descibed by Gary Pennington.


History
Date User Action Args
2008-02-20 17:16:42adminlinkissue222844 messages
2008-02-20 17:16:42admincreate