summaryrefslogtreecommitdiff
path: root/sphinx/ext/doctest.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | Explicitly refer to the license in :license: tags.Georg Brandl2008-12-271-1/+1
| |
* | Merge in #67 bugfix.Georg Brandl2008-12-151-4/+11
|\ \ | |/
| * Fix #67: Output warnings about failed doctests in the doctest extensionGeorg Brandl2008-12-151-2/+11
| | | | | | | | even when running in quiet mode.
| * Remove duplicate warning.Georg Brandl2008-12-151-2/+0
| |
* | Merge in 0.5 bugfixes.Georg Brandl2008-12-151-3/+9
|\ \ | |/
| * Fix two issues with non-ASCII characters being written to byte streams.Georg Brandl2008-12-151-1/+3
| |
| * Warn if doctest blocks don't contain code.Georg Brandl2008-12-151-2/+6
| |
* | Add "doctest_global_setup" conf val.Georg Brandl2008-12-151-2/+10
| |
* | Some more fixes after the great renaming.Georg Brandl2008-11-291-1/+1
|/
* Merged revisions 65640,65675,65699,65701 via svnmerge fromGeorg Brandl2008-08-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x ........ r65640 | georg.brandl | 2008-08-11 16:11:17 +0200 (Mon, 11 Aug 2008) | 2 lines More info in intro. ........ r65675 | georg.brandl | 2008-08-14 13:53:02 +0200 (Thu, 14 Aug 2008) | 2 lines #3546: add missing linebreak. ........ r65699 | benjamin.peterson | 2008-08-15 23:02:22 +0200 (Fri, 15 Aug 2008) | 4 lines rename util.with_testapp to util.with_app; nose was running it also make an assert more informative ........ r65701 | benjamin.peterson | 2008-08-16 00:00:54 +0200 (Sat, 16 Aug 2008) | 1 line add some tests for sphinx.application ........
* Add a dependency system for handling .. include, .. literalincludeGeorg Brandl2008-03-251-2/+2
| | | | and later .. image dependencies.
* Fix a case where nothing is built if the environment is fresh.Georg Brandl2008-03-231-1/+1
|
* Also remove # doctest: directives in presentation output.Georg Brandl2008-03-221-5/+10
|
* * sphinx.ext.doctest: Replace <BLANKLINE> in doctest blocks byGeorg Brandl2008-03-221-6/+17
| | | | | | real blank lines for presentation output. * sphinx.environment: Move doctest_blocks out of block_quotes to support indented doctest blocks.
* Put doctests in "default" by default and update docs for doctest extension.Georg Brandl2008-03-221-2/+2
|
* Introduce an ugly hack allowing doctest to test multi-statement examples.Georg Brandl2008-03-221-0/+15
|
* * Don't "build" dependent files, makes no sense.Georg Brandl2008-03-221-14/+26
| | | | * Don't resolve the pickled doctrees, not needed for doctests.
* Actually use the doctest_path setting.v0.1.61611Georg Brandl2008-03-211-2/+3
|
* Add the doctest extension. It provides a builder that runsGeorg Brandl2008-03-211-0/+280
test snippets in the documentation, marked up as doctest snippets or separate code and output blocks. Providing setup code that is run but not shown in HTML output is supported.