From: R. David Murray Date: Wed, 15 Jul 2009 14:16:54 +0000 (+0000) Subject: PEP-8-ify r73389. X-Git-Tag: v3.2a1~2832 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=765b976a81a4c89f7ae2332d850846430c1fc916;p=thirdparty%2FPython%2Fcpython.git PEP-8-ify r73389. --- diff --git a/Lib/doctest.py b/Lib/doctest.py index 3d053d9bfdf7..b95566f6c68c 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