3 Sep
2005
3 Sep
'05
10:34 p.m.
Jake wrote:
I get:
obj = app._p_jar['\x00\x00\x00\x00\x00\x04\x9d#'] Traceback (most recent call last): File "<stdin>", line 1, in ? AttributeError: 'function' object has no attribute '_p_jar'
I think 'app' in your case is Zope.app (from Zope import app). You prolly also have a 'root' object then; modify the above to read:
obj = root._p_jar['\x00\x00\x00\x00\x00\x04\x9d#']
and you should be fine. Martijn Pieters