[Checkins] SVN: zc.buildout/trunk/src/zc/buildout/tests.py Reformatting

Jim Fulton jim at zope.com
Mon Jul 3 02:30:46 EDT 2006


Log message for revision 68957:
  Reformatting
  

Changed:
  U   zc.buildout/trunk/src/zc/buildout/tests.py

-=-
Modified: zc.buildout/trunk/src/zc/buildout/tests.py
===================================================================
--- zc.buildout/trunk/src/zc/buildout/tests.py	2006-07-03 01:27:22 UTC (rev 68956)
+++ zc.buildout/trunk/src/zc/buildout/tests.py	2006-07-03 06:30:46 UTC (rev 68957)
@@ -21,7 +21,7 @@
 import zc.buildout.testing
 
 def buildout_error_handling():
-    r'''Buildout error handling
+    r"""Buildout error handling
 
 Asking for a section that doesn't exist, yields a key error:
 
@@ -44,14 +44,14 @@
 It is an error to create a variable-reference cycle:
 
     >>> write(sample_buildout, 'buildout.cfg',
-    ... """
+    ... '''
     ... [buildout]
     ... develop = recipes
     ... parts = data_dir debug
     ... x = ${buildout:y}
     ... y = ${buildout:z}
     ... z = ${buildout:x}
-    ... """)
+    ... ''')
 
     >>> print system(os.path.join(sample_buildout, 'bin', 'buildout')),
     ... # doctest: +NORMALIZE_WHITESPACE +ELLIPSIS
@@ -60,9 +60,8 @@
     ValueError: ('Circular references',
            [('buildout', 'y'), ('buildout', 'z'), ('buildout', 'x')],
            ('buildout', 'y'))
+"""
 
-'''    
-
 def linkerSetUp(test):
     zc.buildout.testing.buildoutSetUp(test, clear_home=False)
     zc.buildout.testing.multi_python(test)



More information about the Checkins mailing list