diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-05-30 02:26:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-05-30 02:26:46 (GMT) |
commit | 27c70598a87ca2dad013e7532ca249f1d1651eca (patch) | |
tree | f4b858a134b49cd3a27efebdbdf763cffaf5255e /Lib/doctest.py | |
parent | aba19bc45fb3f0c45cb4511e2b9c1fca637fb2b3 (diff) | |
download | cpython-27c70598a87ca2dad013e7532ca249f1d1651eca.zip cpython-27c70598a87ca2dad013e7532ca249f1d1651eca.tar.gz cpython-27c70598a87ca2dad013e7532ca249f1d1651eca.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index b87df7c..d549163 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1939,7 +1939,7 @@ def testfile(filename, module_relative=True, name=None, package=None, Optional keyword arg "encoding" specifies an encoding that should be used to convert the file to unicode. - + Advanced tomfoolery: testmod runs methods of a local instance of class doctest.Tester, then merges the results into (or creates) global Tester instance doctest.master. Methods of doctest.master @@ -2366,7 +2366,7 @@ def DocFileTest(path, module_relative=True, package=None, # Find the file and read it. name = os.path.basename(path) - + # If an encoding is specified, use it to convert the file to unicode if encoding is not None: doc = doc.decode(encoding) @@ -2427,7 +2427,7 @@ def DocFileSuite(*paths, **kw): parser A DocTestParser (or subclass) that should be used to extract tests from the files. - + encoding An encoding that will be used to convert the files to unicode. """ |