diff options
author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-02-19 18:52:21 (GMT) |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-02-19 18:52:21 (GMT) |
commit | 5149742e8b3c8221d4cb53dcfc9a12ae3fec9238 (patch) | |
tree | d3b7dbc021eeed177f453603f8f59f0ad01b2e0e /Doc/library/difflib.rst | |
parent | a630735b31b5ee0a1a59b3b28299e26a7ee74d9f (diff) | |
download | cpython-5149742e8b3c8221d4cb53dcfc9a12ae3fec9238.zip cpython-5149742e8b3c8221d4cb53dcfc9a12ae3fec9238.tar.gz cpython-5149742e8b3c8221d4cb53dcfc9a12ae3fec9238.tar.bz2 |
Since we recommend one module per import line, reflect this also in the
documentation.
Diffstat (limited to 'Doc/library/difflib.rst')
-rw-r--r-- | Doc/library/difflib.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst index addd813..701c5d5 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -708,7 +708,11 @@ It is also contained in the Python source distribution, as """ - import sys, os, time, difflib, optparse + import difflib + import os + import optparse + import sys + import time def main(): # Configure the option parser |