[Zope3-checkins] SVN: Zope3/trunk/src/zope/testbrowser/browser.py Move two imports up to the top, so they are more visible.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Nov 18 16:33:48 EST 2005


Log message for revision 40236:
  Move two imports up to the top, so they are more visible.
  

Changed:
  U   Zope3/trunk/src/zope/testbrowser/browser.py

-=-
Modified: Zope3/trunk/src/zope/testbrowser/browser.py
===================================================================
--- Zope3/trunk/src/zope/testbrowser/browser.py	2005-11-18 21:30:31 UTC (rev 40235)
+++ Zope3/trunk/src/zope/testbrowser/browser.py	2005-11-18 21:33:47 UTC (rev 40236)
@@ -23,7 +23,9 @@
 import pullparser
 import re
 import StringIO
+import time
 import urllib2
+from test import pystone
 
 try:
     from zope import interface
@@ -90,9 +92,6 @@
         object.__setattr__(self, name, value)
 
 
-import time
-from test import pystone
-
 class PystoneTimer(object):
     start_time = 0
     end_time = 0



More information about the Zope3-Checkins mailing list