Zope 2.4 requires Python 2.1.(1). Do you have an third party products installed that may cause the problem ? Andreas ----- Original Message ----- From: "mixo" <mixo@beth.uniforum.org.za> To: <zope@zope.org> Sent: Thursday, September 13, 2001 05:26 Subject: [Zope] Zope 2.4.1 and Python
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']