[Zope] [BUG] calling a constructor crashes Zope

Steve Spicklemire steve@spvi.com
Mon, 25 Dec 2000 11:18:23 -0500 (EST)


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