[pypy-svn] r57782 - pypy/branch/pypy-pytrunk/pypy/doc

hpk at codespeak.net hpk at codespeak.net
Tue Sep 2 22:21:33 CEST 2008


Author: hpk
Date: Tue Sep  2 22:21:29 2008
New Revision: 57782

Modified:
   pypy/branch/pypy-pytrunk/pypy/doc/configuration.txt
   pypy/branch/pypy-pytrunk/pypy/doc/getting-started.txt
Log:
fixing failing doctests (haven't been run for a long time, i guess)


Modified: pypy/branch/pypy-pytrunk/pypy/doc/configuration.txt
==============================================================================
--- pypy/branch/pypy-pytrunk/pypy/doc/configuration.txt	(original)
+++ pypy/branch/pypy-pytrunk/pypy/doc/configuration.txt	Tue Sep  2 22:21:29 2008
@@ -132,6 +132,7 @@
 ``OptionDescription`` instance. The attributes of the ``Config`` objects are the
 names of the children of the ``OptionDescription``. Example::
 
+    >>> from pypy.config.config import OptionDescription, Config, BoolOption
     >>> descr = OptionDescription("options", "", [
     ...     BoolOption("bool", "", default=False)])
     >>>

Modified: pypy/branch/pypy-pytrunk/pypy/doc/getting-started.txt
==============================================================================
--- pypy/branch/pypy-pytrunk/pypy/doc/getting-started.txt	(original)
+++ pypy/branch/pypy-pytrunk/pypy/doc/getting-started.txt	Tue Sep  2 22:21:29 2008
@@ -198,6 +198,7 @@
 (e.g. the object space) and any variables you have created on the PyPy
 prompt with the prefix ``w_``:: 
 
+    .. >>> import py ; py.test.skip("skipchunk")
     >>>> a = 123
     >>>> <Ctrl-C>
     *** Entering interpreter-level console ***



More information about the Pypy-commit mailing list