[Zope-dev] PersitentList seems broken

Damian Morton morton@dennisinter.com
Sun, 26 Mar 2000 21:26:47 -0500


I havent been able to track down whats causing this error, but
PersistentList seems to be broken. From the monitor, this is what I see.
When trying to import from a Python shell popped open in website/lib/python,
it imports fine.


Python 1.5.2 (#0, Jul 30 1999, 09:52:18) [MSC 32 bit (Intel)]
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
Welcome to <secure_monitor_channel connected 127.0.0.1:2312 at e53bf0>
[Hint: try 'from __main__ import *']
>>> import Persistence
>>> from Persistence import PersistentMapping
>>> from Zodb import PersistentList
>>> a = PersistentList()
Traceback (innermost last):
  File "C:\Zope\WebSite\ZServer\medusa\monitor.py", line 119, in
found_terminator
    exec co in self.local_env
  File "<secure_monitor_channel connected 127.0.0.1:2312 at e53bf0>", line
1, in ?
TypeError: call of non-function (type module)
>>> b = PersistentMapping()
>>>