summaryrefslogtreecommitdiffstats
path: root/Lib/doctest.py
Commit message (Collapse)AuthorAgeFilesLines
* Changed doctest to run tests in alphabetic order of name.Tim Peters2001-03-211-2/+12
| | | | | | This makes verbose-mode output easier to dig thru, and removes an accidental dependence on the order of dict.items() (made visible by recent changes to dictobject.c).
* Make doctest's self-test succeed after the previous change.Guido van Rossum2001-03-181-0/+2
|
* Print a bunch of asterisks before the failure summary, to separate itGuido van Rossum2001-03-181-0/+1
| | | | from the last failure report.
* Miranda newlines: if anything at all was written to stdout, supply aTim Peters2001-02-141-1/+7
| | | | | | | newline at the end if there isn't one already. Expected output has no way to indicate that a trailing newline was not expected, and in the interpreter shell *Python* supplies the trailing newline before printing the next prompt.
* Change doctest exception example to one whose detail hasn't changed since 1.5.2.Tim Peters2001-02-141-4/+4
|
* Teach doctest about newer "(most recent call last)" traceback spelling.Tim Peters2001-02-131-3/+4
|
* Bump __version__ tuple.Tim Peters2001-02-101-1/+1
|
* String method conversion.Eric S. Raymond2001-02-091-16/+11
|
* more __all__ updatesSkip Montanaro2001-01-201-0/+2
|
* doctest-- The Little Module That Could --finally makes it to the Big Show ↵Tim Peters2001-01-161-0/+1101
<wink>.