diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-07-15 14:16:54 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-07-15 14:16:54 (GMT) |
commit | 765b976a81a4c89f7ae2332d850846430c1fc916 (patch) | |
tree | 383ef41a678aa73de3ade2df695feafc6de16528 /Lib/doctest.py | |
parent | b49c70c7d30361856b73e0cf8de7cd6ad3af5e9f (diff) | |
download | cpython-765b976a81a4c89f7ae2332d850846430c1fc916.zip cpython-765b976a81a4c89f7ae2332d850846430c1fc916.tar.gz cpython-765b976a81a4c89f7ae2332d850846430c1fc916.tar.bz2 |
PEP-8-ify r73389.
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index 3d053d9..b95566f 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -821,7 +821,8 @@ class DocTestFinder: # (see __patched_linecache_getlines). file = inspect.getfile(obj) if not file[0]+file[-2:] == '<]>': file = None - if file is None: source_lines = None + if file is None: + source_lines = None else: if module is not None: # Supply the module globals in case the module was |