summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_doctest.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-5/+5
* Fix the remaining doctest failures.Guido van Rossum2007-02-091-6/+10
* Redue the failure rate to 13 tests. Bah.Guido van Rossum2007-02-091-135/+135
* Fix a bunch of doctests with the -d option of refactor.py.Guido van Rossum2007-02-091-43/+43
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-2/+2
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-2/+2
* Inspired by SF patch #860326, make the exception formatting byGuido van Rossum2006-08-261-1/+1
* Remove usage of backticks.Brett Cannon2006-08-251-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-7/+0
* Merge the rest of the trunk.Thomas Wouters2006-06-081-48/+9
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-6/+48
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-0/+39
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-23/+23
* Get doctest to pass. The problem was int/int -> float now. ThereNeal Norwitz2006-03-221-11/+11
* 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