Re: [ZODB-Dev] KeyError in BTrees.check

2010-07-13 Thread Suresh V.
Hanno Schlichting wrote: > On Tue, Jul 13, 2010 at 11:23 AM, Suresh V. wrote: >> While trying to run manage_cleanup on my BTreeFolder2, I get a KeyError >> from the classify function in Module BTrees.check: >> >> def classify(obj): >> return _type2kind[type(obj)] >> >> I see that obj is None a

Re: [ZODB-Dev] KeyError in BTrees.check

2010-07-13 Thread Hanno Schlichting
On Tue, Jul 13, 2010 at 11:23 AM, Suresh V. wrote: > While trying to run manage_cleanup on my BTreeFolder2, I get a KeyError > from the classify function in Module BTrees.check: > > def classify(obj): >     return _type2kind[type(obj)] > > I see that obj is None at this point. > > Anyway I can pat