[Checkins] SVN: grok/trunk/src/grok/admin/docgrok.txt Make the test slightly more robust against whitespace issues.

Jan-Wijbrand Kolman janwijbrand at gmail.com
Fri May 2 05:52:16 EDT 2008


Log message for revision 86065:
  Make the test slightly more robust against whitespace issues.
  
  

Changed:
  U   grok/trunk/src/grok/admin/docgrok.txt

-=-
Modified: grok/trunk/src/grok/admin/docgrok.txt
===================================================================
--- grok/trunk/src/grok/admin/docgrok.txt	2008-05-02 09:50:06 UTC (rev 86064)
+++ grok/trunk/src/grok/admin/docgrok.txt	2008-05-02 09:52:16 UTC (rev 86065)
@@ -11,7 +11,7 @@
 DocGrok is a helper to generate documentation for nearly everything
 living in a running Zope 3 instance. Basically it provides
 'information'-objects for different types of things, like modules,
-classes, functions, textfiles etc. 
+classes, functions, textfiles etc.
 
 A ``DocGrok`` therefore is an object wich normally is bound to a
 certain entity, which is describable by a dotted path. It provides
@@ -229,8 +229,9 @@
     >>> entry = [x for x in methods if x['name'] == 'url'][0]
     >>> entry['name']
     'url'
-    >>> entry['doc'].strip()
-    'Return string for the URL based on the obj and name. The data \n    argument is used to form a CGI query string.'
+    >>> print entry['doc'].strip()
+    Return string for the URL based on the obj and name. The data
+    argument is used to form a CGI query string.
     >>> entry['signature']
     '(obj=None, name=None, data=None)'
 



More information about the Checkins mailing list