summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_doctest.py
Commit message (Expand)AuthorAgeFilesLines
* Merge ast-branch to headJeremy Hylton2005-10-201-6/+6
* Fix test cases for doctest.Georg Brandl2005-06-261-0/+3
* add __file__ to the globals available for tests loaded via DocFileSuite;Fred Drake2004-12-211-0/+8
* test_doctest.py test_pdb_set_trace_nested(): A new test from Jim FultonTim Peters2004-11-081-3/+90
* Reverted the addition of a NORMALIZE_NUMBERS option, per Tim Peter'sEdward Loper2004-09-281-101/+0
* Added a new NORMALIZE_NUMBERS option, which causes number literals inEdward Loper2004-09-281-0/+101
* - Changed SampleClass docstrings to test docstring parsing a littleEdward Loper2004-09-211-7/+18
* - Added "testfile" function, a simple function for running & verifyingEdward Loper2004-09-191-3/+132
* In DocFileTest:Edward Loper2004-09-181-3/+26
* exclude_empty: make the default True for DocTestFinder, and introduce itTim Peters2004-09-131-7/+20
* Added new parameter exclude_empty to DocTestFinder.__init__, whichEdward Loper2004-09-131-4/+20
* DocTestFinder._find(): for tests derived from a module __test__ global,Tim Peters2004-09-131-2/+2
* Recover from inspect.getmodule() changes. It returns a module forTim Peters2004-09-111-25/+42
* Added IGNORE_EXCEPTION_DETAIL comparison option. The need is explainedTim Peters2004-09-041-0/+37
* Whitespace normalization.Tim Peters2004-08-291-2/+2
* - setUp and tearDown functions are now passed the test objectJim Fulton2004-08-281-5/+111
* Removed outdated commentEdward Loper2004-08-271-2/+0
* - Removed redundant call to expandtabs in DocTestParesr.Edward Loper2004-08-271-51/+114
* - Added DocTestParser.parse(), which parses a docstring into ExamplesEdward Loper2004-08-261-2/+57
* output_difference(): In fancy-diff cases, the way this split expected &Tim Peters2004-08-261-7/+3
* Added REPORT_ONLY_FIRST_FAILURE flag, which supresses output after theEdward Loper2004-08-261-0/+81
* Renamed UNIFIED_DIFF->REPORT_UDIFF; CONTEXT_DIFF->REPORT_CDIFF; andEdward Loper2004-08-261-7/+7
* Shortened diff output for unified & context diffsEdward Loper2004-08-261-6/+2
* - Changed the output of report_start() and report_unexpected_exception()Edward Loper2004-08-261-22/+40
* Added an "exc_msg" attribute to Example (containing the expectedEdward Loper2004-08-261-16/+77
* Only recognize the expected output as an exception if it *starts* withEdward Loper2004-08-251-3/+13
* test_DocTestFinder(): This test failed when test_doctest was runTim Peters2004-08-231-2/+5
* Moved some test cases from doctest to test_doctest.Tim Peters2004-08-231-2/+126
* Added NDIFF_DIFF option.Tim Peters2004-08-221-3/+29
* Bugs fixed:Jim Fulton2004-08-221-56/+115
* _ellipsis_match(): Removed special-casing of "...\n". The semanticsTim Peters2004-08-221-28/+5
* Now that they've settled down, document doctest directives.Tim Peters2004-08-191-3/+17
* Replaced the ELLIPSIS implementation with a worst-case linear-time one.Tim Peters2004-08-191-8/+20
* ELLIPSIS implementation: an ellipsis couldn't match nothing if itTim Peters2004-08-191-0/+23
* Fixed bug in line-number finding for examples (DocTestParser wasn'tEdward Loper2004-08-171-2/+25
* - Changed output of DocTestParser.get_program() to make it easier toEdward Loper2004-08-121-8/+8
* - Added __docformat__Edward Loper2004-08-121-4/+6
* - Changed option directives to be example-specific. (i.e., they nowEdward Loper2004-08-121-29/+153
* Edward's latest checkins somehow managed to wipe out my previous latestTim Peters2004-08-091-1/+0
* - DocTest is now a simple container class; its constructor is no longerEdward Loper2004-08-091-7/+10
* This started as a spelling and whitespace cleanup. The comment forTim Peters2004-08-091-6/+5
* Added support for pdb.set_trace.Jim Fulton2004-08-091-0/+87
* Drop the excruciating newline requirements on arguments toTim Peters2004-08-091-17/+27
* Rewrote Parser, using regular expressions instead of walking thoughEdward Loper2004-08-091-2/+11
* Get rid of the ignore_imports argument to DocTestFinder.find().Tim Peters2004-08-081-16/+9
* Deprecated testmod's useless & confusing isprivate gimmick.Tim Peters2004-08-081-21/+8
* Bug 772091: doctest.DocTestSuite does not support __test__Tim Peters2004-08-071-13/+16
* Merging from tim-doctest-branch, which is now closed.Tim Peters2004-08-061-2/+177
* Example.__init__: this cannot use assert, because that fails to triggerTim Peters2004-08-041-3/+3
* Edward Loper's cool and massive refactoring of doctest.py, merged fromTim Peters2004-08-041-2/+1002