Hi Andreas,
You might try this: Start Zope in debug mode (./start -D ). Then in your __init__...
class AJFile:
def __init__(self):
import pdb
pdb.set_trace()
self.d = {}
Zope will stop in the debugger. Step through with the debugger and see where things are
going south....
-steve