summaryrefslogtreecommitdiffstats
path: root/Lib/test/sample_doctest.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.12] gh-108303: Move all doctest related files and tests to ↵Miss Islington (bot)2024-01-181-76/+0
| | | | | | | | | `Lib/test/test_doctest/` (GH-112109) (#114254) gh-108303: Move all doctest related files and tests to `Lib/test/test_doctest/` (GH-112109) (cherry picked from commit 9c93350f582fe6f5fed2cd873869dfe4fbf2dfe8) Co-authored-by: Nikita Sobolev <mail@sobolevn.me> Co-authored-by: Brett Cannon <brett@python.org>
* Fix a bunch of doctests with the -d option of refactor.py.Guido van Rossum2007-02-091-3/+3
| | | | We still have 27 failing tests (down from 39).
* Bug 772091: doctest.DocTestSuite does not support __test__Tim Peters2004-08-071-3/+13
| | | | | This got fixed "by magic" as part of the refactoring, but wasn't tested as such. Now it is.
* Merging from tim-doctest-branch, which is now closed.Tim Peters2004-08-061-0/+66
This primarily adds more powerful ways to work with unittest, including spiffy support for building suites out of doctests in non-Python "text files".