summaryrefslogtreecommitdiffstats
path: root/Lib/doctest.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-09-12 22:45:17 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-09-12 22:45:17 (GMT)
commit9661f9ab4f969651e7f1fea224034237e328f6ac (patch)
tree7cf6658ba505a70084a6cf8b98fca15b1d9ea259 /Lib/doctest.py
parent4be7a92f7f296fe74fc7e220c3740a800ec85c09 (diff)
downloadcpython-9661f9ab4f969651e7f1fea224034237e328f6ac.zip
cpython-9661f9ab4f969651e7f1fea224034237e328f6ac.tar.gz
cpython-9661f9ab4f969651e7f1fea224034237e328f6ac.tar.bz2
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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py
index 587753e..5d371d2 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)