summaryrefslogtreecommitdiff
path: root/sandbox/paultremblay/python_interface/test_files/doctest_blocks.rst
blob: 1daba1b83c3a380f8213fe22889f7c509d0174f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
This is an ordinary paragraph.

>>> print 'this is a Doctest block'
this is a Doctest block

The following is a literal block::

    >>> This is not recognized as a doctest block by
    reStructuredText.  It *will* be recognized by the doctest
    module, though!