[Zope3-checkins] CVS: Zope3 - z3.py:1.21.18.1

Jim Fulton cvs-admin at zope.org
Thu Nov 20 16:10:17 EST 2003


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv14618

Modified Files:
      Tag: adaptergeddon-branch
	z3.py 
Log Message:
Check for 2.3.3

M src/zope/app/backward.zcml
M src/zope/app/browser/services/field.py
M src/zope/app/event/tests/placelesssetup.py
M src/zope/app/process/bootstrap.py
M src/zope/app/security/_protections.py
M src/zope/app/services/adapter.py
M src/zope/app/services/configure.zcml
M src/zope/app/services/presentation.py
M src/zope/app/services/service.py
U src/zope/interface/surrogate.py

Added Backward compatability support.


=== Zope3/z3.py 1.21 => 1.21.18.1 ===
--- Zope3/z3.py:1.21	Sat Jul 12 20:50:06 2003
+++ Zope3/z3.py	Thu Nov 20 16:10:16 2003
@@ -25,12 +25,11 @@
 
 def run(argv=list(sys.argv)):
 
-    if sys.version_info < ( 2,2,3 ):
+    if sys.version_info < ( 2,3,2 ):
 	print """\
 	ERROR: Your python version is not supported by Zope3.
-	Zope3 needs either Python2.3 or Python2.2.3 or greater.
-	In particular, Zope3 on Python2.2.2 is a recipe for 
-	pain. You are running:""" + sys.version
+	Zope3 needs either Python2.3.2 or greater.
+	""" + sys.version
 	sys.exit(1)
 
     # Refuse to run without principals.zcml




More information about the Zope3-Checkins mailing list