[Checkins] SVN: manuel/trunk/src/ - docs tweaks

Benji York benji at zope.com
Fri Jun 19 19:48:13 EDT 2009


Log message for revision 101156:
  - docs tweaks
  - removed old XXX comment
  

Changed:
  U   manuel/trunk/src/intro.txt
  U   manuel/trunk/src/manuel/codeblock.py
  U   manuel/trunk/src/manuel/doctest.txt

-=-
Modified: manuel/trunk/src/intro.txt
===================================================================
--- manuel/trunk/src/intro.txt	2009-06-19 21:55:17 UTC (rev 101155)
+++ manuel/trunk/src/intro.txt	2009-06-19 23:48:13 UTC (rev 101156)
@@ -33,7 +33,7 @@
 Included Functionality
 ======================
 
-Manuel includes several extentions to doctest out of the box.
+Manuel includes quite a bit of functionality out of the box.
 
 :ref:`manuel.codeblock <code-blocks>`
     executes code in ".. code-block:: python" blocks

Modified: manuel/trunk/src/manuel/codeblock.py
===================================================================
--- manuel/trunk/src/manuel/codeblock.py	2009-06-19 21:55:17 UTC (rev 101155)
+++ manuel/trunk/src/manuel/codeblock.py	2009-06-19 23:48:13 UTC (rev 101156)
@@ -2,9 +2,6 @@
 import manuel
 import textwrap
 
-# XXX document code-blocks that are really comments but get executed anyway
-# (perhaps with better syntax)
-
 CODEBLOCK_START = re.compile(r'^\.\.\s*code-block::?\s*python\b', re.MULTILINE)
 CODEBLOCK_END = re.compile(r'(\n\Z|\n(?=\S))')
 

Modified: manuel/trunk/src/manuel/doctest.txt
===================================================================
--- manuel/trunk/src/manuel/doctest.txt	2009-06-19 21:55:17 UTC (rev 101155)
+++ manuel/trunk/src/manuel/doctest.txt	2009-06-19 23:48:13 UTC (rev 101156)
@@ -43,8 +43,6 @@
 
 .. note:: :mod:`zope.testing.renormalizing` provides an :class:`OutputChecker`
    for smoothing out differences between actual and expected output for things
-   that are hard to control (like memory addresses and time) using regular
-   expressions.  See the `module's doctests
-   <http://svn.zope.org/zope.testing/trunk/src/zope/testing/renormalizing.py?view=markup>`_
+   that are hard to control (like memory addresses and time).  See the
+   `module's doctests <http://svn.zope.org/zope.testing/trunk/src/zope/testing/renormalizing.py?view=markup>`_
    for more information on how it works.
-



More information about the Checkins mailing list