[Zope-Checkins] CVS: Zope2 - __init__.py:1.2

Jim Fulton jim@digicool.com
Sat, 7 Apr 2001 13:28:18 -0400 (EDT)


Update of /cvs-repository/Zope2/ZServer/async1x
In directory korak:/tmp/cvs-serv21032

Modified Files:
	__init__.py 
Log Message:
ecided we didn't need to use Python's version after all.
(There's really not a good reason for asynchat to be in 
Python's standard lib.)



--- Updated File __init__.py in package Zope2 --
--- __init__.py	2001/04/05 23:38:16	1.1
+++ __init__.py	2001/04/07 17:28:17	1.2
@@ -2,10 +2,8 @@
 # We want to use updated asynchat and asyncore if using Python1.5
 import sys
 if sys.version[:1] < '2':
-    import asyncore, asynchat
+    import asyncore
     sys.modules['asyncore']=asyncore
-    sys.modules['asynchat']=asynchat
     del asyncore
-    del asynchat
 
 del sys