revert r69777 since all the experts agree that extra import lines distract from the code
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst
index 49db1c8..31e6d0f 100644
--- a/Doc/library/doctest.rst
+++ b/Doc/library/doctest.rst
@@ -951,11 +951,9 @@
test suites from modules and text files containing doctests. These test suites
can then be run using :mod:`unittest` test runners::
- import doctest
import unittest
-
- import my_module_with_doctests
- import my_other_module_with_doctests
+ import doctest
+ import my_module_with_doctests, and_another
suite = unittest.TestSuite()
for mod in my_module_with_doctests, and_another: