[Zope3-checkins] CVS: Zope3/src/zope/app/interpreter - python.py:1.3

Jeremy Hylton cvs-admin at zope.org
Mon Nov 3 23:04:57 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/interpreter
In directory cvs.zope.org:/tmp/cvs-serv28992/src/zope/app/interpreter

Modified Files:
	python.py 
Log Message:
Fix various import issues.

Some names where from imported twice.
Other imports were unused.
Often imports were in partly random order, making them harder to read.


=== Zope3/src/zope/app/interpreter/python.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/interpreter/python.py:1.2	Thu Aug 21 10:19:24 2003
+++ Zope3/src/zope/app/interpreter/python.py	Mon Nov  3 23:04:27 2003
@@ -15,7 +15,9 @@
 
 $Id$
 """
-import sys, StringIO
+import StringIO
+import sys
+
 from zope.app.interfaces.interpreter import IInterpreter
 from zope.interface import implements
 from zope.security.interpreter import RestrictedInterpreter




More information about the Zope3-Checkins mailing list