From: Tim Peters Date: Sun, 12 Sep 2004 22:45:17 +0000 (+0000) Subject: Tester.run___test__(): This couldn't possibly work at all. I'm afraid X-Git-Tag: v2.4b1~286 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9661f9ab4f969651e7f1fea224034237e328f6ac;p=thirdparty%2FPython%2Fcpython.git Tester.run___test__(): This couldn't possibly work at all. I'm afraid the "backward compatibility" here was a joke. --- diff --git a/Lib/doctest.py b/Lib/doctest.py index 587753e5f665..5d371d29ccd9 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)