Closed tonich-sh closed 6 years ago
from persistent import Persistent class A(Persistent): name = None class Jar(object): r = 0 def register(self, obj): self.r += 1 j = Jar() a = A() a._p_jar = j a.name = 'test' print j.r
prints "0" when runs with PURE_PYTHON=1 and "1" - without.
See comments in #29 about closing this issue.
prints "0" when runs with PURE_PYTHON=1 and "1" - without.