Hello Andreas Jung, Friday, December 9, 2005, 12:17:36 PM, you wrote:
AJ> That's different from my instance (Zope HEAD): You are right :), i use ZODB 3.1.5. Ok, i try on ZODB 3.4.0 this works. But this behaviour differs from dict objects, is this correct :)? >>> t = IIBTree(map(None,range(5),range(5))) >>> for i in t.keys(): if i in [1,3]: del t[i] print i 0 2 3 >>> t = dict(map(None,range(5),range(5))) >>> for i in t.keys(): if i in [1,3]: del t[i] print i 0 1 2 3 4 If this is correct, bug in my code :)). -- Best regards, Victor Safronovich NauMen.NauDoc.SoftwareDeveloper http://www.naumen.ru _______________________________________________ For more information about ZODB, see the ZODB Wiki: http://www.zope.org/Wikis/ZODB/ ZODB-Dev mailing list - ZODB-Dev@zope.org http://mail.zope.org/mailman/listinfo/zodb-dev