diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-09-12 22:45:17 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-09-12 22:45:17 +0000 |
commit | d32f3d19f1561ad1792da7cda9ab41f736bc2410 (patch) | |
tree | 6acc641117d9412e24cc854fc8bff34c6d2d45bb /Lib/doctest.py | |
parent | de63e5adc416abb25876dc8be946049e4f13c4a7 (diff) | |
download | cpython-d32f3d19f1561ad1792da7cda9ab41f736bc2410.tar.gz |
Tester.run___test__(): This couldn't possibly work at all. I'm afraid
the "backward compatibility" here was a joke.
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index 587753e5f6..5d371d29cc 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -2001,7 +2001,7 @@ class Tester: import new m = new.module(name) m.__test__ = d - return self.rundoc(m, name, module) + return self.rundoc(m, name) def summarize(self, verbose=None): return self.testrunner.summarize(verbose) |