Hi,

Could anyone confirm that this shows a BTree bug:

from BTrees.OOBTree import OOBTree
class B(OOBTree):
  def __init__(self):
    OOBTree.__init__(self)
    print self._p_changed
    self.foo = 4
    print self.foo
    print self._p_changed
    self._p_changed = True
    print self._p_changed
B()

This prints:
False
4
False
False

Where I would expect True for the last two at least.

Florent

--
Florent Guillaume, Nuxeo (Paris, France)   Director of R&D
+33 1 40 33 71 59   http://nuxeo.com   [EMAIL PROTECTED]



_______________________________________________
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

Reply via email to