[Zope-Checkins] CVS: Zope/lib/python/ZServer - __init__.py:1.27.58.2

Fred L. Drake, Jr. fred@zope.com
Fri, 14 Feb 2003 00:43:05 -0500


Update of /cvs-repository/Zope/lib/python/ZServer
In directory cvs.zope.org:/tmp/cvs-serv9826

Modified Files:
      Tag: new-install-branch
	__init__.py 
Log Message:
- we no longer need a private copy of asyncore; the one from Python 2.2.2 is
  sufficient
- sys.ZServerExitCode becomes ZServer.exit_code


=== Zope/lib/python/ZServer/__init__.py 1.27.58.1 => 1.27.58.2 ===
--- Zope/lib/python/ZServer/__init__.py:1.27.58.1	Tue Feb 11 12:54:19 2003
+++ Zope/lib/python/ZServer/__init__.py	Fri Feb 14 00:43:00 2003
@@ -13,19 +13,17 @@
 
 import sys
 
-from medusa import asyncore
-sys.modules['asyncore'] = asyncore
-
 from medusa.test import max_sockets
 CONNECTION_LIMIT=max_sockets.max_select_sockets()
 
-ZSERVER_VERSION='1.1b1'
+ZSERVER_VERSION='1.1'
 try:
     import App.version_txt
     ZOPE_VERSION=App.version_txt.version_txt()
 except:
     ZOPE_VERSION='experimental'
 
+exit_code = 0
 
 # Try to poke zLOG default logging into asyncore
 # XXX We should probably should do a better job of this,