- 4703211 Updated the warnings, linecache, inspect, traceback, site, and doctest modules by Phillip J. Eby · 19 years ago
- ecf93c7 Fix test cases for doctest. by Georg Brandl · 19 years ago
- 1f14964 bug [ 1172785 ] doctest.script_from_examples() result sometimes un-exec-able by Georg Brandl · 19 years ago
- b7e99b6 SF patch 1167316: doctest.py fails self-test if run directly. by Tim Peters · 20 years ago
- 7c404a4 add __file__ to the globals available for tests loaded via DocFileSuite; by Fred Drake · 20 years ago
- 7960bf9 And delete a useless comment. by Tim Peters · 20 years ago
- d7bbbbc _OutputRedirectingPdb.trace_dispatch(): Return the base class's by Tim Peters · 20 years ago
- 50c6bdb test_doctest.py test_pdb_set_trace_nested(): A new test from Jim Fulton by Tim Peters · 20 years ago
- 7d42878 Fixed a small bug. doctest didn't handle unicode docstrings containing by Jim Fulton · 20 years ago
- 7d88a58 Reverted the addition of a NORMALIZE_NUMBERS option, per Tim Peter's by Edward Loper · 20 years ago
- aec3c9b Added a new NORMALIZE_NUMBERS option, which causes number literals in by Edward Loper · 20 years ago
- 498a186 - Added a "parser" option to testfile() and DocFileTest(). by Edward Loper · 20 years ago
- 3afaaf2 Removed debug_script from the public API: no docs, not public. I'm in by Tim Peters · 20 years ago
- 9d02a7c Add set_unittest_reportflags() to the public API. Docs will follow by Tim Peters · 20 years ago
- 261b28a Removed two undocumented unittest support classes, and one undocumented by Tim Peters · 20 years ago
- 48983fc Removed most of the module docstring. There's too much to explain now, by Tim Peters · 20 years ago
- a2fc7ec - Minor docstring fixes. - Simplified code to find names for file-based tests. by Edward Loper · 20 years ago
- bab3e99 Whitespace normalization. by Tim Peters · 20 years ago
- 052d0cd - Added "testfile" function, a simple function for running & verifying by Edward Loper · 20 years ago
- 0273f5b In DocFileTest: by Edward Loper · 20 years ago
- 958cc89 exclude_empty: make the default True for DocTestFinder, and introduce it by Tim Peters · 20 years ago
- 32ddbf7 Added new parameter exclude_empty to DocTestFinder.__init__, which by Edward Loper · 20 years ago
- c568478 DocTestFinder._find(): for tests derived from a module __test__ global, by Tim Peters · 20 years ago
- 82076ef Reluctantly, rehabilitate doctest.master. by Tim Peters · 20 years ago
- 9661f9a Tester.run___test__(): This couldn't possibly work at all. I'm afraid by Tim Peters · 20 years ago
- 4be7a92 Tester.__init__(): this couldn't possibly work when a module argument by Tim Peters · 20 years ago
- 1fbf9c5 Added IGNORE_EXCEPTION_DETAIL comparison option. The need is explained by Tim Peters · 20 years ago
- ba60196 Added a couple names to __all__. by Tim Peters · 20 years ago
- 38330fe The distinction between comparison flags and reporting flags isn't unique by Tim Peters · 20 years ago
- df7a208 Whitespace normalization. by Tim Peters · 20 years ago
- f54bad4 - setUp and tearDown functions are now passed the test object by Jim Fulton · 20 years ago
- 12a4baf Remove unused method _OutputRedirectingPdb.resume by Edward Loper · 20 years ago
- 2de91ba - Removed redundant call to expandtabs in DocTestParesr. by Edward Loper · 20 years ago
- 00f8da7 - Added DocTestParser.parse(), which parses a docstring into Examples by Edward Loper · 20 years ago
- e7edcb8 output_difference(): In fancy-diff cases, the way this split expected & by Tim Peters · 20 years ago
- 5b799c1 _do_a_fancy_diff(): Pay no attention to the ellipses behind the curtain. by Tim Peters · 20 years ago
- ca9111e Changed OutputChecker.output_difference to expect an Example object, by Edward Loper · 20 years ago
- a89f88d Added REPORT_ONLY_FIRST_FAILURE flag, which supresses output after the by Edward Loper · 20 years ago
- 71f55af Renamed UNIFIED_DIFF->REPORT_UDIFF; CONTEXT_DIFF->REPORT_CDIFF; and by Edward Loper · 20 years ago
- 5662929 Shortened diff output for unified & context diffs by Edward Loper · 20 years ago
- aacf083 - Changed the output of report_start() and report_unexpected_exception() by Edward Loper · 20 years ago
- a6b6832 Added an "exc_msg" attribute to Example (containing the expected by Edward Loper · 20 years ago
- 19b1958 Only recognize the expected output as an exception if it *starts* with by Edward Loper · 20 years ago
- dd50cb7 The attempt to shut up deprecation warnings for doctest's own use of by Tim Peters · 20 years ago
- a7def72 Moved some test cases from doctest to test_doctest. by Tim Peters · 20 years ago
- 3fa8c20 Misc cleanups. by Tim Peters · 20 years ago
- b6a04d6 debug_script(): I changed this in haste before to take out the use of by Tim Peters · 20 years ago
- f82a9de Start deferring to the LaTeX docs for details. I'd like to move the by Tim Peters · 20 years ago
- c6cbab0 Added NDIFF_DIFF option. by Tim Peters · 20 years ago
- 75dc5e1 Type in docstring. by Tim Peters · 20 years ago
- c504915 _parse_example(): Simplified new code to preserve trailing spaces before by Tim Peters · 20 years ago
- 07a349c Bugs fixed: by Jim Fulton · 20 years ago
- e594bee _ellipsis_match(): Removed special-casing of "...\n". The semantics by Tim Peters · 20 years ago
- b0a04e1 Gave _ellipsis_match() an attractive new leading underscore. by Tim Peters · 20 years ago
- 3a3817f Got rid of nooutput() (was used by DocTestCase.debug()) by Edward Loper · 20 years ago
- b7503ff Updated __all__ to include every non-underscored class, function, and by Edward Loper · 20 years ago
- dc5de3b ellipsis_match(): Changed treatment of start- and end-of-string exact by Tim Peters · 20 years ago
- 26b3ebb Replaced the ELLIPSIS implementation with a worst-case linear-time one. by Tim Peters · 20 years ago
- 1cf3aa6 ELLIPSIS implementation: an ellipsis couldn't match nothing if it by Tim Peters · 20 years ago
- b51b234 Fixed bug in line-number finding for examples (DocTestParser wasn't by Edward Loper · 20 years ago
- 41a65ea Doctest has new traceback gimmicks in 2.4. While trying to document by Tim Peters · 20 years ago
- 7ea48dd Nit in _IS_BLANK_OR_COMMENT comment -- it doesn't matter how this is by Tim Peters · 20 years ago
- 68ba9a6 In output_difference(), replace blank lines in `want` with <BLANKLINE> by Edward Loper · 20 years ago
- a5db600 - Changed output of DocTestParser.get_program() to make it easier to by Edward Loper · 20 years ago
- 8e4a34b - Added __docformat__ by Edward Loper · 20 years ago
- 74bca7a - Changed option directives to be example-specific. (i.e., they now by Edward Loper · 20 years ago
- ac20f57 - Added a register_optionflag function (so users can add their own by Edward Loper · 20 years ago
- c2388a2 Start rewriting doctest's LaTeX docs. Damn, this is slow going! by Tim Peters · 20 years ago
- 6c542b7 Edward's latest checkins somehow managed to wipe out my previous latest by Tim Peters · 20 years ago
- a1ef611 - DocTest is now a simple container class; its constructor is no longer by Edward Loper · 20 years ago
- 413ced6 This started as a spelling and whitespace cleanup. The comment for by Tim Peters · 20 years ago
- 356fd19 Added support for pdb.set_trace. by Jim Fulton · 20 years ago
- 80e5314 Removed lots of stuff from the module docstring. My intent for 2.4 is by Tim Peters · 20 years ago
- 208ca70 Repair some out-of-date comments. by Tim Peters · 20 years ago
- bb43147 Drop the excruciating newline requirements on arguments to by Tim Peters · 20 years ago
- dd0e475 Give return stmts their own lines. by Tim Peters · 20 years ago
- d40a92b Indent body of _EXAMPLE_RE for readability. _IS_BLANK_OR_COMMENT makes by Tim Peters · 20 years ago
- 78b58f3 Changed Parser.get_examples() to return a list of Example objects, by Edward Loper · 20 years ago
- 34fcb14 - Split DocTestRunner's check_output and output_difference methods off by Edward Loper · 20 years ago
- 7c74846 Rewrote Parser, using regular expressions instead of walking though by Edward Loper · 20 years ago
- f3f5747 Get rid of the ignore_imports argument to DocTestFinder.find(). by Tim Peters · 20 years ago
- 161c963 Type in docstring. by Tim Peters · 20 years ago
- 3ddd60a Also deprecated the old Tester class, which is no longer used by anything by Tim Peters · 20 years ago
- bafb1fe Deprecate the doctest.is_private() function. by Tim Peters · 20 years ago
- f727c6c Deprecated testmod's useless & confusing isprivate gimmick. by Tim Peters · 20 years ago
- d1b7827 Whitespace normalization. by Tim Peters · 20 years ago
- 19397e5 Merging from tim-doctest-branch, which is now closed. by Tim Peters · 20 years ago
- 9b625d3 Example.__init__: this cannot use assert, because that fails to trigger by Tim Peters · 20 years ago
- 8485b56 Edward Loper's cool and massive refactoring of doctest.py, merged from by Tim Peters · 20 years ago
- a643b65 Ported some features from zope: by Jim Fulton · 20 years ago
- 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago
- 92816de Patch #932930: suggest the use of rawstrings for backslashes. by Martin v. Löwis · 20 years ago
- 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
- 7a70ea4 SF patch #806246: use basestring where possible by Raymond Hettinger · 21 years ago
- 5f8b0b1 SF 798269: bug fix for doctest (sf bug id: 798254 by Raymond Hettinger · 21 years ago
- 71adf7e Doctest now examines all docstrings by default. Previously, it would by Raymond Hettinger · 21 years ago
- cc39a13 Expose the 'master' instance mentioned in the docs. by Raymond Hettinger · 21 years ago
- db3756d Some nifty doctest extensions from Jim Fulton, currently used in Zope3. by Tim Peters · 21 years ago
- 275abbd Missed a spot where the new optional optionflags argument needed to get by Tim Peters · 21 years ago
- 6ebe61f A hack to ease compatibility with pre-2.3 Pythons: by default, doctest by Tim Peters · 21 years ago