1. 6507657 Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  2. 9840db8 #8473: make doctest.testfile use universal newline mode. by R David Murray · 10 years ago
  3. 0ee9baa Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. by Tim Peters · 11 years ago
  4. 0364134 Issue #18647: A regular expression in the doctest module rewritten so that by Serhiy Storchaka · 11 years ago
  5. f5469cf #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  6. 8d58053 #14649: clarify DocTestSuite error when there are no docstrings. by R David Murray · 12 years ago
  7. b3f95d7 #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 12 years ago
  8. 6c3f4a8 Followup to #7502: add __hash__ method and tests. by Antoine Pitrou · 13 years ago
  9. 7a3d8ae Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 13 years ago
  10. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  11. 99d848b Merged revisions 85503 via svnmerge from by Antoine Pitrou · 14 years ago
  12. 80800d3 Fix the issue with non-ascii char in doctest. Issue #9409 by Florent Xicluna · 14 years ago
  13. b67660f Merged revisions 85495 via svnmerge from by Florent Xicluna · 14 years ago
  14. b8de9fa Merged revisions 84106 via svnmerge from by Alexander Belopolsky · 14 years ago
  15. 5077599 Merged revisions 83259,83261,83264-83265,83268-83269,83271-83272,83281 via svnmerge from by Georg Brandl · 14 years ago
  16. 1f05e2e #8471: reset _SpoofOut.buf to an empty string when truncating; if Unicode had been output previously, it had been coerced to a Unicode string, potentially making subsequent prints behave differently or raise UnicodeErrors. by Georg Brandl · 14 years ago
  17. dfb45df Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro) by Nick Coghlan · 14 years ago
  18. e1f4c92 #7667: Fix doctest failures with non-ASCII paths. by Florent Xicluna · 14 years ago
  19. 2a903b2 Issue #1729305: Fix doctest to handle encode error with "backslashreplace". It fixes #7667 too. by Florent Xicluna · 14 years ago
  20. f28fd24 Issue 6292: for the moment at least, the test suite passes if run by R. David Murray · 14 years ago
  21. 08dca0d Remove a leftover from a previous iteration of the issue 7376 patch. by R. David Murray · 15 years ago
  22. 77e48ba Issue #7376: When called with no arguments doctest was running a by R. David Murray · 15 years ago
  23. f93f303 Stronger tests for combinatoric relationships. by Raymond Hettinger · 15 years ago
  24. 6806001 Issue #4197: Fix the remaining part of the doctest-in-zipfile problem by giving linecache access to the module globals when available by Nick Coghlan · 16 years ago
  25. 7fb2979 patch from issue 1108 by Skip Montanaro · 16 years ago
  26. 1b4758d #2767: don't clear globs in run() call, since they could be needed in tearDown, by Georg Brandl · 16 years ago
  27. 45141d0 #2766: remove code without effect. by Georg Brandl · 16 years ago
  28. fff4e6e Doctest results return a named tuple for readability by Raymond Hettinger · 16 years ago
  29. d8a8c7d Fix issue #1530. Return an error exit status if not all tests passes. by Alexandre Vassalotti · 17 years ago
  30. c756d00 Replaced import of the 'new' module with 'types' module and added a deprecation warning to the 'new' module. by Christian Heimes · 17 years ago
  31. 58a6f44 back in these go - thanks to Titus Brown for the fix by Skip Montanaro · 17 years ago
  32. d3a1bdf revert change that breaks test_doctest (which I forgot to run - sorry) by Skip Montanaro · 17 years ago
  33. 6d7914b Make trace and doctest play nice together (issue 1429818). Will backport. by Skip Montanaro · 17 years ago
  34. 43e53f8 doctest assumed that a package's __loader__.get_data() method used universal by Brett Cannon · 17 years ago
  35. cff1ae3 Small nit, found by Neal. by Georg Brandl · 17 years ago
  36. ff432e6 Patch #1663234: you can now run doctest on test files and modules by Georg Brandl · 17 years ago
  37. d219e7f Fix a couple of typos. by Neal Norwitz · 18 years ago
  38. 6f68147 Bug #1529297: The rewrite of doctest for Python 2.4 unintentionally by Tim Peters · 18 years ago
  39. 052cbcf Remove unused import by Neal Norwitz · 18 years ago
  40. bf0400a Remove doctest.testmod's deprecated (in 2.4) `isprivate` by Tim Peters · 18 years ago
  41. 27c7059 Whitespace normalization. by Tim Peters · 18 years ago
  42. a3f0927 ("Forward-port" of r46506) by Armin Rigo · 18 years ago
  43. f3c65de Patch #1080727: add "encoding" parameter to doctest.DocFileSuite by George Yoshida · 18 years ago
  44. 1956480 Patch #721464: pdb.Pdb instances can now be given explicit stdin and by Georg Brandl · 18 years ago
  45. ad2ef33 Variant of patch #1478292. doctest.register_optionflag(name) by Tim Peters · 18 years ago
  46. 711bf30 Patch #1475231: add a new SKIP doctest option, thanks to Edward Loper. by Tim Peters · 18 years ago
  47. 4703211 Updated the warnings, linecache, inspect, traceback, site, and doctest modules by Phillip J. Eby · 18 years ago
  48. ecf93c7 Fix test cases for doctest. by Georg Brandl · 19 years ago
  49. 1f14964 bug [ 1172785 ] doctest.script_from_examples() result sometimes un-exec-able by Georg Brandl · 19 years ago
  50. b7e99b6 SF patch 1167316: doctest.py fails self-test if run directly. by Tim Peters · 19 years ago
  51. 7c404a4 add __file__ to the globals available for tests loaded via DocFileSuite; by Fred Drake · 20 years ago
  52. 7960bf9 And delete a useless comment. by Tim Peters · 20 years ago
  53. d7bbbbc _OutputRedirectingPdb.trace_dispatch(): Return the base class's by Tim Peters · 20 years ago
  54. 50c6bdb test_doctest.py test_pdb_set_trace_nested(): A new test from Jim Fulton by Tim Peters · 20 years ago
  55. 7d42878 Fixed a small bug. doctest didn't handle unicode docstrings containing by Jim Fulton · 20 years ago
  56. 7d88a58 Reverted the addition of a NORMALIZE_NUMBERS option, per Tim Peter's by Edward Loper · 20 years ago
  57. aec3c9b Added a new NORMALIZE_NUMBERS option, which causes number literals in by Edward Loper · 20 years ago
  58. 498a186 - Added a "parser" option to testfile() and DocFileTest(). by Edward Loper · 20 years ago
  59. 3afaaf2 Removed debug_script from the public API: no docs, not public. I'm in by Tim Peters · 20 years ago
  60. 9d02a7c Add set_unittest_reportflags() to the public API. Docs will follow by Tim Peters · 20 years ago
  61. 261b28a Removed two undocumented unittest support classes, and one undocumented by Tim Peters · 20 years ago
  62. 48983fc Removed most of the module docstring. There's too much to explain now, by Tim Peters · 20 years ago
  63. a2fc7ec - Minor docstring fixes. - Simplified code to find names for file-based tests. by Edward Loper · 20 years ago
  64. bab3e99 Whitespace normalization. by Tim Peters · 20 years ago
  65. 052d0cd - Added "testfile" function, a simple function for running & verifying by Edward Loper · 20 years ago
  66. 0273f5b In DocFileTest: by Edward Loper · 20 years ago
  67. 958cc89 exclude_empty: make the default True for DocTestFinder, and introduce it by Tim Peters · 20 years ago
  68. 32ddbf7 Added new parameter exclude_empty to DocTestFinder.__init__, which by Edward Loper · 20 years ago
  69. c568478 DocTestFinder._find(): for tests derived from a module __test__ global, by Tim Peters · 20 years ago
  70. 82076ef Reluctantly, rehabilitate doctest.master. by Tim Peters · 20 years ago
  71. 9661f9a Tester.run___test__(): This couldn't possibly work at all. I'm afraid by Tim Peters · 20 years ago
  72. 4be7a92 Tester.__init__(): this couldn't possibly work when a module argument by Tim Peters · 20 years ago
  73. 1fbf9c5 Added IGNORE_EXCEPTION_DETAIL comparison option. The need is explained by Tim Peters · 20 years ago
  74. ba60196 Added a couple names to __all__. by Tim Peters · 20 years ago
  75. 38330fe The distinction between comparison flags and reporting flags isn't unique by Tim Peters · 20 years ago
  76. df7a208 Whitespace normalization. by Tim Peters · 20 years ago
  77. f54bad4 - setUp and tearDown functions are now passed the test object by Jim Fulton · 20 years ago
  78. 12a4baf Remove unused method _OutputRedirectingPdb.resume by Edward Loper · 20 years ago
  79. 2de91ba - Removed redundant call to expandtabs in DocTestParesr. by Edward Loper · 20 years ago
  80. 00f8da7 - Added DocTestParser.parse(), which parses a docstring into Examples by Edward Loper · 20 years ago
  81. e7edcb8 output_difference(): In fancy-diff cases, the way this split expected & by Tim Peters · 20 years ago
  82. 5b799c1 _do_a_fancy_diff(): Pay no attention to the ellipses behind the curtain. by Tim Peters · 20 years ago
  83. ca9111e Changed OutputChecker.output_difference to expect an Example object, by Edward Loper · 20 years ago
  84. a89f88d Added REPORT_ONLY_FIRST_FAILURE flag, which supresses output after the by Edward Loper · 20 years ago
  85. 71f55af Renamed UNIFIED_DIFF->REPORT_UDIFF; CONTEXT_DIFF->REPORT_CDIFF; and by Edward Loper · 20 years ago
  86. 5662929 Shortened diff output for unified & context diffs by Edward Loper · 20 years ago
  87. aacf083 - Changed the output of report_start() and report_unexpected_exception() by Edward Loper · 20 years ago
  88. a6b6832 Added an "exc_msg" attribute to Example (containing the expected by Edward Loper · 20 years ago
  89. 19b1958 Only recognize the expected output as an exception if it *starts* with by Edward Loper · 20 years ago
  90. dd50cb7 The attempt to shut up deprecation warnings for doctest's own use of by Tim Peters · 20 years ago
  91. a7def72 Moved some test cases from doctest to test_doctest. by Tim Peters · 20 years ago
  92. 3fa8c20 Misc cleanups. by Tim Peters · 20 years ago
  93. b6a04d6 debug_script(): I changed this in haste before to take out the use of by Tim Peters · 20 years ago
  94. f82a9de Start deferring to the LaTeX docs for details. I'd like to move the by Tim Peters · 20 years ago
  95. c6cbab0 Added NDIFF_DIFF option. by Tim Peters · 20 years ago
  96. 75dc5e1 Type in docstring. by Tim Peters · 20 years ago
  97. c504915 _parse_example(): Simplified new code to preserve trailing spaces before by Tim Peters · 20 years ago
  98. 07a349c Bugs fixed: by Jim Fulton · 20 years ago
  99. e594bee _ellipsis_match(): Removed special-casing of "...\n". The semantics by Tim Peters · 20 years ago
  100. b0a04e1 Gave _ellipsis_match() an attractive new leading underscore. by Tim Peters · 20 years ago