[Checkins] SVN: lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/ avoid time; bad for dependencychecker

Godefroid Chapelle gotcha at bubblenet.be
Thu Feb 4 10:54:57 EST 2010


Log message for revision 108773:
  avoid time; bad for dependencychecker
  

Changed:
  U   lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/README.txt
  U   lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/startlater.txt

-=-
Modified: lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/README.txt
===================================================================
--- lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/README.txt	2010-02-04 15:54:25 UTC (rev 108772)
+++ lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/README.txt	2010-02-04 15:54:57 UTC (rev 108773)
@@ -220,7 +220,8 @@
   >>> root_service.isProcessing()
   False
 
-  >>> import time; time.sleep(STOP_SLEEP_TIME)
+  >>> import time
+  >>> time.sleep(STOP_SLEEP_TIME)
 
 And reset the logger:
 
@@ -259,7 +260,8 @@
   >>> service.isProcessing()
   False
 
-  >>> import time; time.sleep(STOP_SLEEP_TIME)
+  >>> import time
+  >>> time.sleep(STOP_SLEEP_TIME)
 
 Reset the product configuration with the asterisked service names:
 
@@ -305,7 +307,8 @@
   >>> root_service.isProcessing()
   False
 
-  >>> import time; time.sleep(STOP_SLEEP_TIME)
+  >>> import time
+  >>> time.sleep(STOP_SLEEP_TIME)
 
 Reset the product configuration with the asterisked service names:
 
@@ -343,7 +346,8 @@
   >>> service.isProcessing()
   False
 
-  >>> import time; time.sleep(STOP_SLEEP_TIME)
+  >>> import time
+  >>> time.sleep(STOP_SLEEP_TIME)
 
   >>> config.mapping['autostart'] = '*@Foo'
   >>> setProductConfigurations([config])
@@ -377,7 +381,8 @@
   >>> root_service.isProcessing()
   False
 
-  >>> import time; time.sleep(STOP_SLEEP_TIME)
+  >>> import time
+  >>> time.sleep(STOP_SLEEP_TIME)
 
 Let's now read a job:
 
@@ -681,7 +686,8 @@
   >>> service2.stopProcessing()
   >>> root_service.stopProcessing()
 
-  >>> import time; time.sleep(STOP_SLEEP_TIME)
+  >>> import time
+  >>> time.sleep(STOP_SLEEP_TIME)
 
 The threads have exited now:
 

Modified: lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/startlater.txt
===================================================================
--- lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/startlater.txt	2010-02-04 15:54:25 UTC (rev 108772)
+++ lovely.remotetask/branches/port-for-zope210/src/lovely/remotetask/startlater.txt	2010-02-04 15:54:57 UTC (rev 108773)
@@ -126,4 +126,5 @@
 
   >>> service.stopProcessing()
 
-  >>> import time; time.sleep(STOP_SLEEP_TIME)
+  >>> import time
+  >>> time.sleep(STOP_SLEEP_TIME)



More information about the checkins mailing list