Does Zope 2.4.1 require 2.4.1 require python 2.1 or 1.5.2? I just installed Zope 2.4..1 and I get the follwing error ++++++++++++++++++++++++++++++++++++++++++++++++++++ Zope Error Zope has encountered an error while publishing this resource. Error Type: SystemError Error Value: Failed to import class RegexObject from module re +++++++++++++++++++++++++++++++++++++++++++++++++++ I have python 2.1.1 installed and from the shell I get the following result from "dir(re)" ________________________________________________________ ['DOTALL', 'I', 'IGNORECASE', 'L', 'LOCALE', 'M', 'MULTILINE', 'S', 'U', 'UNICODE', 'VERBOSE', 'X', '__all__', '__builtins__', '__doc__', '__file__', '__name__', 'compile', 'engine', 'error', 'escape', 'findall', 'match', 'purge', 'search', 'split', 'sub', 'subn', 'template'] ________________________________________________________ There is no class name "RegexObject" in "re". What am I missing here? P.S. I have attached a python 2 shell session. Python 2.1.1 (#1, Aug 28 2001, 19:51:39) [GCC 2.96 20000731 (Red Hat Linux 7.1 2.96-85)] on linux2 Type "copyright", "credits" or "license" for more information.
import re dir(re) ['DOTALL', 'I', 'IGNORECASE', 'L', 'LOCALE', 'M', 'MULTILINE', 'S', 'U', 'UNICODE', 'VERBOSE', 'X', '__all__', '__builtins__', '__doc__', '__file__', '__name__', 'compile', 'engine', 'error', 'escape', 'findall', 'match', 'purge', 'search', 'split', 'sub', 'subn', 'template']