1. 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 · 15 years ago
  2. edb9f87 Issue #7449 part 3, test_doctest: import trace module in test_coverage() by Victor Stinner · 15 years ago
  3. 6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. by Florent Xicluna · 15 years ago
  4. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  5. 2a903b2 Issue #1729305: Fix doctest to handle encode error with "backslashreplace". It fixes #7667 too. by Florent Xicluna · 15 years ago
  6. d7b0eeb split unittest.py into a package by Benjamin Peterson · 16 years ago
  7. f81ff98 #6227: Because of a wrong indentation, the test was not testing what it should. by Amaury Forgeot d'Arc · 16 years ago
  8. a205347 Fix several issues relating to access to source code inside zipfiles. Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details. by Nick Coghlan · 16 years ago
  9. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  10. fff4e6e Doctest results return a named tuple for readability by Raymond Hettinger · 17 years ago
  11. f725b95 Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. by Georg Brandl · 17 years ago
  12. 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
  13. eaa2c98 Fix a bug in the test for using __loader__.get_data(). by Brett Cannon · 17 years ago
  14. 9db1d5a Add a missing check before deleting a package's __loader__. by Brett Cannon · 17 years ago
  15. 43e53f8 doctest assumed that a package's __loader__.get_data() method used universal by Brett Cannon · 17 years ago
  16. 0e5edf5 Remove a unneeded line that had typos. by Brett Cannon · 17 years ago
  17. 6f68147 Bug #1529297: The rewrite of doctest for Python 2.4 unintentionally by Tim Peters · 19 years ago
  18. bf0400a Remove doctest.testmod's deprecated (in 2.4) `isprivate` by Tim Peters · 19 years ago
  19. f3c65de Patch #1080727: add "encoding" parameter to doctest.DocFileSuite by George Yoshida · 19 years ago
  20. ad2ef33 Variant of patch #1478292. doctest.register_optionflag(name) by Tim Peters · 19 years ago
  21. 711bf30 Patch #1475231: add a new SKIP doctest option, thanks to Edward Loper. by Tim Peters · 19 years ago
  22. 1c5bc1c Part of bug 1459808: fiddle so that this passes with or without -Qnew. by Tim Peters · 19 years ago
  23. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
  24. ecf93c7 Fix test cases for doctest. by Georg Brandl · 20 years ago
  25. 7c404a4 add __file__ to the globals available for tests loaded via DocFileSuite; by Fred Drake · 20 years ago
  26. 50c6bdb test_doctest.py test_pdb_set_trace_nested(): A new test from Jim Fulton by Tim Peters · 21 years ago
  27. 7d88a58 Reverted the addition of a NORMALIZE_NUMBERS option, per Tim Peter's by Edward Loper · 21 years ago
  28. aec3c9b Added a new NORMALIZE_NUMBERS option, which causes number literals in by Edward Loper · 21 years ago
  29. 4ae900f - Changed SampleClass docstrings to test docstring parsing a little by Edward Loper · 21 years ago
  30. 052d0cd - Added "testfile" function, a simple function for running & verifying by Edward Loper · 21 years ago
  31. 0273f5b In DocFileTest: by Edward Loper · 21 years ago
  32. 958cc89 exclude_empty: make the default True for DocTestFinder, and introduce it by Tim Peters · 21 years ago
  33. 32ddbf7 Added new parameter exclude_empty to DocTestFinder.__init__, which by Edward Loper · 21 years ago
  34. c568478 DocTestFinder._find(): for tests derived from a module __test__ global, by Tim Peters · 21 years ago
  35. 17b5637 Recover from inspect.getmodule() changes. It returns a module for by Tim Peters · 21 years ago
  36. 1fbf9c5 Added IGNORE_EXCEPTION_DETAIL comparison option. The need is explained by Tim Peters · 21 years ago
  37. df7a208 Whitespace normalization. by Tim Peters · 21 years ago
  38. f54bad4 - setUp and tearDown functions are now passed the test object by Jim Fulton · 21 years ago
  39. 0fafacc Removed outdated comment by Edward Loper · 21 years ago
  40. 2de91ba - Removed redundant call to expandtabs in DocTestParesr. by Edward Loper · 21 years ago
  41. 00f8da7 - Added DocTestParser.parse(), which parses a docstring into Examples by Edward Loper · 21 years ago
  42. e7edcb8 output_difference(): In fancy-diff cases, the way this split expected & by Tim Peters · 21 years ago
  43. a89f88d Added REPORT_ONLY_FIRST_FAILURE flag, which supresses output after the by Edward Loper · 21 years ago
  44. 71f55af Renamed UNIFIED_DIFF->REPORT_UDIFF; CONTEXT_DIFF->REPORT_CDIFF; and by Edward Loper · 21 years ago
  45. 5662929 Shortened diff output for unified & context diffs by Edward Loper · 21 years ago
  46. aacf083 - Changed the output of report_start() and report_unexpected_exception() by Edward Loper · 21 years ago
  47. a6b6832 Added an "exc_msg" attribute to Example (containing the expected by Edward Loper · 21 years ago
  48. 19b1958 Only recognize the expected output as an exception if it *starts* with by Edward Loper · 21 years ago
  49. 4de7c5c test_DocTestFinder(): This test failed when test_doctest was run by Tim Peters · 21 years ago
  50. a7def72 Moved some test cases from doctest to test_doctest. by Tim Peters · 21 years ago
  51. c6cbab0 Added NDIFF_DIFF option. by Tim Peters · 21 years ago
  52. 07a349c Bugs fixed: by Jim Fulton · 21 years ago
  53. e594bee _ellipsis_match(): Removed special-casing of "...\n". The semantics by Tim Peters · 21 years ago
  54. 026f8dc Now that they've settled down, document doctest directives. by Tim Peters · 21 years ago
  55. 26b3ebb Replaced the ELLIPSIS implementation with a worst-case linear-time one. by Tim Peters · 21 years ago
  56. 1cf3aa6 ELLIPSIS implementation: an ellipsis couldn't match nothing if it by Tim Peters · 21 years ago
  57. b51b234 Fixed bug in line-number finding for examples (DocTestParser wasn't by Edward Loper · 21 years ago
  58. a5db600 - Changed output of DocTestParser.get_program() to make it easier to by Edward Loper · 21 years ago
  59. 8e4a34b - Added __docformat__ by Edward Loper · 21 years ago
  60. 74bca7a - Changed option directives to be example-specific. (i.e., they now by Edward Loper · 21 years ago
  61. 6c542b7 Edward's latest checkins somehow managed to wipe out my previous latest by Tim Peters · 21 years ago
  62. a1ef611 - DocTest is now a simple container class; its constructor is no longer by Edward Loper · 21 years ago
  63. 413ced6 This started as a spelling and whitespace cleanup. The comment for by Tim Peters · 21 years ago
  64. 356fd19 Added support for pdb.set_trace. by Jim Fulton · 21 years ago
  65. bb43147 Drop the excruciating newline requirements on arguments to by Tim Peters · 21 years ago
  66. 7c74846 Rewrote Parser, using regular expressions instead of walking though by Edward Loper · 21 years ago
  67. f3f5747 Get rid of the ignore_imports argument to DocTestFinder.find(). by Tim Peters · 21 years ago
  68. f727c6c Deprecated testmod's useless & confusing isprivate gimmick. by Tim Peters · 21 years ago
  69. 1e277ee Bug 772091: doctest.DocTestSuite does not support __test__ by Tim Peters · 21 years ago
  70. 19397e5 Merging from tim-doctest-branch, which is now closed. by Tim Peters · 21 years ago
  71. 9b625d3 Example.__init__: this cannot use assert, because that fails to trigger by Tim Peters · 21 years ago
  72. 8485b56 Edward Loper's cool and massive refactoring of doctest.py, merged from by Tim Peters · 21 years ago
  73. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  74. b64bec3 Whitespace normalization. by Tim Peters · 24 years ago
  75. a0a6222 Teach regrtest how to pass on doctest failure msgs. This is done via a by Tim Peters · 24 years ago
  76. f5f6c43 Remove test_doctest's expected-output file. by Tim Peters · 24 years ago
  77. 6db54c6 Add std test for doctest. by Tim Peters · 24 years ago