summaryrefslogtreecommitdiff
path: root/Lib/test/test_doctest.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Martin Panter2016-07-281-2/+2
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Fix test_doctest in verbose modeVictor Stinner2015-12-021-2/+2
* Open files in binary mode to avoid newlines transformation.Serhiy Storchaka2015-04-041-2/+2
* explicitly close files (closes #23090)Benjamin Peterson2014-12-201-2/+4
* #8473: make doctest.testfile use universal newline mode.R David Murray2014-10-021-0/+26
* Fudge - http.client doesn't exist in 2.7. Use Queue.Empty instead.Tim Peters2013-12-031-6/+6
* Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all.Tim Peters2013-12-031-0/+27
* don't expect warnings from doctests if they can't runBenjamin Peterson2012-10-151-1/+3
* #14649: clarify DocTestSuite error when there are no docstrings.R David Murray2012-09-101-0/+25
* Followup to #7502: add __hash__ method and tests.Antoine Pitrou2011-12-181-0/+19
* Issue #7502: Fix equality comparison for DocTestCase instances.Antoine Pitrou2011-12-181-0/+40
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-4/+4
* Fix the issue with non-ascii char in doctest. Issue #9409Florent Xicluna2010-10-141-2/+5
* Merged revisions 85495 via svnmerge fromFlorent Xicluna2010-10-141-11/+11
* Merged revisions 83259,83261,83264-83265,83268-83269,83271-83272,83281 via sv...Georg Brandl2010-08-011-0/+29
* #8471: reset _SpoofOut.buf to an empty string when truncating; if Unicode had...Georg Brandl2010-08-011-1/+27
* 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