| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix test_doctest in verbose mode | Victor Stinner | 2015-12-02 | 1 | -2/+2 |
|
|
* | Open files in binary mode to avoid newlines transformation. | Serhiy Storchaka | 2015-04-04 | 1 | -2/+2 |
|
|
* | explicitly close files (closes #23090) | Benjamin Peterson | 2014-12-20 | 1 | -2/+4 |
|
|
* | #8473: make doctest.testfile use universal newline mode. | R David Murray | 2014-10-03 | 1 | -0/+26 |
|
|
* | Fudge - http.client doesn't exist in 2.7. Use Queue.Empty instead. | Tim Peters | 2013-12-04 | 1 | -6/+6 |
|
|
* | Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. | Tim Peters | 2013-12-04 | 1 | -0/+27 |
|
|
* | don't expect warnings from doctests if they can't run | Benjamin Peterson | 2012-10-16 | 1 | -1/+3 |
|
|
* | #14649: clarify DocTestSuite error when there are no docstrings. | R David Murray | 2012-09-10 | 1 | -0/+25 |
|
|
* | Followup to #7502: add __hash__ method and tests. | Antoine Pitrou | 2011-12-18 | 1 | -0/+19 |
|
|
* | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 1 | -0/+40 |
|
|
* | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -4/+4 |
|
|
* | Fix the issue with non-ascii char in doctest. Issue #9409 | Florent Xicluna | 2010-10-14 | 1 | -2/+5 |
|
|
* | Merged revisions 85495 via svnmerge from | Florent Xicluna | 2010-10-14 | 1 | -11/+11 |
|
|
* | Merged revisions 83259,83261,83264-83265,83268-83269,83271-83272,83281 via sv... | Georg Brandl | 2010-08-01 | 1 | -0/+29 |
|
|
* | #8471: reset _SpoofOut.buf to an empty string when truncating; if Unicode had... | Georg Brandl | 2010-08-01 | 1 | -1/+27 |
|
|
* | Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module co... | Nick Coghlan | 2010-04-28 | 1 | -0/+71 |
|
|
* | Issue #7449 part 3, test_doctest: import trace module in test_coverage() | Victor Stinner | 2010-04-27 | 1 | -1/+2 |
|
|
* | Replace catch_warnings with check_warnings when it makes sense. Use assertRa... | Florent Xicluna | 2010-03-31 | 1 | -7/+8 |
|
|
* | #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k... | Florent Xicluna | 2010-03-21 | 1 | -9/+10 |
|
|
* | Issue #1729305: Fix doctest to handle encode error with "backslashreplace". ... | Florent Xicluna | 2010-02-27 | 1 | -1/+44 |
|
|
* | split unittest.py into a package | Benjamin Peterson | 2009-07-19 | 1 | -19/+19 |
|
|
* | #6227: Because of a wrong indentation, the test was not testing what it should. | Amaury Forgeot d'Arc | 2009-06-14 | 1 | -0/+2 |
|
|
* | Fix several issues relating to access to source code inside zipfiles. Initial... | Nick Coghlan | 2008-12-14 | 1 | -1/+4 |
|
|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+1 |
|
|
* | Doctest results return a named tuple for readability | Raymond Hettinger | 2008-01-11 | 1 | -58/+58 |
|
|
* | Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. | Georg Brandl | 2008-01-05 | 1 | -1/+1 |
|
|
* | Replaced import of the 'new' module with 'types' module and added a deprecati... | Christian Heimes | 2007-11-27 | 1 | -7/+7 |
|
|
* | Fix a bug in the test for using __loader__.get_data(). | Brett Cannon | 2007-11-23 | 1 | -0/+1 |
|
|
* | Add a missing check before deleting a package's __loader__. | Brett Cannon | 2007-11-21 | 1 | -1/+2 |
|
|
* | doctest assumed that a package's __loader__.get_data() method used universal | Brett Cannon | 2007-11-21 | 1 | -0/+17 |
|
|
* | Remove a unneeded line that had typos. | Brett Cannon | 2007-11-21 | 1 | -2/+0 |
|
|
* | Bug #1529297: The rewrite of doctest for Python 2.4 unintentionally | Tim Peters | 2006-07-27 | 1 | -7/+0 |
|
|
* | Remove doctest.testmod's deprecated (in 2.4) `isprivate` | Tim Peters | 2006-06-05 | 1 | -48/+9 |
|
|
* | Patch #1080727: add "encoding" parameter to doctest.DocFileSuite | George Yoshida | 2006-05-28 | 1 | -6/+48 |
|
|
* | Variant of patch #1478292. doctest.register_optionflag(name) | Tim Peters | 2006-05-10 | 1 | -0/+20 |
|
|
* | Patch #1475231: add a new SKIP doctest option, thanks to | Tim Peters | 2006-04-25 | 1 | -0/+19 |
|
|
* | Part of bug 1459808: fiddle so that this passes | Tim Peters | 2006-03-28 | 1 | -12/+12 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -6/+6 |
|
|
* | Fix test cases for doctest. | Georg Brandl | 2005-06-26 | 1 | -0/+3 |
|
|
* | add __file__ to the globals available for tests loaded via DocFileSuite; | Fred Drake | 2004-12-21 | 1 | -0/+8 |
|
|
* | test_doctest.py test_pdb_set_trace_nested(): A new test from Jim Fulton | Tim Peters | 2004-11-08 | 1 | -3/+90 |
|
|
* | Reverted the addition of a NORMALIZE_NUMBERS option, per Tim Peter's | Edward Loper | 2004-09-28 | 1 | -101/+0 |
|
|
* | Added a new NORMALIZE_NUMBERS option, which causes number literals in | Edward Loper | 2004-09-28 | 1 | -0/+101 |
|
|
* | - Changed SampleClass docstrings to test docstring parsing a little | Edward Loper | 2004-09-21 | 1 | -7/+18 |
|
|
* | - Added "testfile" function, a simple function for running & verifying | Edward Loper | 2004-09-19 | 1 | -3/+132 |
|
|
* | In DocFileTest: | Edward Loper | 2004-09-18 | 1 | -3/+26 |
|
|
* | exclude_empty: make the default True for DocTestFinder, and introduce it | Tim Peters | 2004-09-13 | 1 | -7/+20 |
|
|
* | Added new parameter exclude_empty to DocTestFinder.__init__, which | Edward Loper | 2004-09-13 | 1 | -4/+20 |
|
|
* | DocTestFinder._find(): for tests derived from a module __test__ global, | Tim Peters | 2004-09-13 | 1 | -2/+2 |
|
|
* | Recover from inspect.getmodule() changes. It returns a module for | Tim Peters | 2004-09-11 | 1 | -25/+42 |
|
|