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

Guido van Rossum guido@python.org
Tue, 24 Dec 2002 13:54:25 -0500


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

Modified Files:
      Tag: NameGeddon-branch
	z3.py 
Log Message:
Import threadedasync from the right place.


=== Zope3/z3.py 1.11.2.1 => 1.11.2.2 ===
--- Zope3/z3.py:1.11.2.1	Tue Dec 24 13:52:39 2002
+++ Zope3/z3.py	Tue Dec 24 13:54:24 2002
@@ -63,9 +63,9 @@
     from zope.configuration.xmlconfig import XMLConfig
     XMLConfig(os.path.join(dir, 'zserver.zcml'))()
 
-    import ThreadedAsync
+    from zodb.zeo import threadedasync
     try:
-        ThreadedAsync.loop()
+        threadedasync.loop()
     except KeyboardInterrupt:
         # Exit without spewing an exception.
         pass
@@ -74,4 +74,3 @@
 
 if __name__ == '__main__':
     run()
-