Since we recommend one module per import line, reflect this also in the
documentation.
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst
index 1de11b9..a04badb 100644
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -231,7 +231,8 @@
load the required file or files using :meth:`readfp` before calling :meth:`read`
for any optional files::
- import ConfigParser, os
+ import ConfigParser
+ import os
config = ConfigParser.ConfigParser()
config.readfp(open('defaults.cfg'))