From 75dc5e14eaea0fad7445920511f371751fe1bfd1 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 22 Aug 2004 17:50:45 +0000 Subject: [PATCH] Type in docstring. --- Lib/doctest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/doctest.py b/Lib/doctest.py index fca2f98b8d7..74714c534f3 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -2135,7 +2135,7 @@ def DocTestSuite(module=None, globs=None, extraglobs=None, setUp=lambda: None, tearDown=lambda: None, checker=None): """ - Convert doctest tests for a mudule to a unittest test suite. + Convert doctest tests for a module to a unittest test suite. This converts each documentation string in a module that contains doctest tests to a unittest test case. If any of the