[issue10698] doctest load_tests() typo

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Thanks. Fixed in r87216. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker __

[issue10698] doctest load_tests() typo

2010-12-13 Thread Andrew Dalke
New submission from Andrew Dalke : doctest.html Section 24.2.5 "Unittest API" says: def load_tests(loader, tests, ignore): tests.addTests(doctest.DocTestSuite(my_module_with_doctests)) return test That last line should be "return tests" -- assignee: d...@python components: Doc