summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_doctest.py
Commit message (Expand)AuthorAgeFilesLines
* Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module co...Nick Coghlan2010-04-281-0/+71
* Issue #7449 part 3, test_doctest: import trace module in test_coverage()Victor Stinner2010-04-271-1/+2
* Replace catch_warnings with check_warnings when it makes sense. Use assertRa...Florent Xicluna2010-03-311-7/+8
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-9/+10
* Issue #1729305: Fix doctest to handle encode error with "backslashreplace". ...Florent Xicluna2010-02-271-1/+44
* split unittest.py into a packageBenjamin Peterson2009-07-191-19/+19
* #6227: Because of a wrong indentation, the test was not testing what it should.Amaury Forgeot d'Arc2009-06-141-0/+2
* Fix several issues relating to access to source code inside zipfiles. Initial...Nick Coghlan2008-12-141-1/+4
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
* Doctest results return a named tuple for readabilityRaymond Hettinger2008-01-111-58/+58
* Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.Georg Brandl2008-01-051-1/+1
* Replaced import of the 'new' module with 'types' module and added a deprecati...Christian Heimes2007-11-271-7/+7
* Fix a bug in the test for using __loader__.get_data().Brett Cannon2007-11-231-0/+1
* Add a missing check before deleting a package's __loader__.Brett Cannon2007-11-211-1/+2
* doctest assumed that a package's __loader__.get_data() method used universalBrett Cannon2007-11-211-0/+17
* Remove a unneeded line that had typos.Brett Cannon2007-11-211-2/+0
* Bug #1529297: The rewrite of doctest for Python 2.4 unintentionallyTim Peters2006-07-271-7/+0
* Remove doctest.testmod's deprecated (in 2.4) `isprivate`Tim Peters2006-06-051-48/+9
* Patch #1080727: add "encoding" parameter to doctest.DocFileSuiteGeorge Yoshida2006-05-281-6/+48
* Variant of patch #1478292. doctest.register_optionflag(name)Tim Peters2006-05-101-0/+20
* Patch #1475231: add a new SKIP doctest option, thanks toTim Peters2006-04-251-0/+19
* Part of bug 1459808: fiddle so that this passesTim Peters2006-03-281-12/+12
* 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