mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Merged revisions 74010,74034,74054 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r74010 | r.david.murray | 2009-07-15 16:16:54 +0200 (Mi, 15 Jul 2009) | 2 lines
PEP-8-ify r73389.
................
r74034 | alexandre.vassalotti | 2009-07-17 07:35:59 +0200 (Fr, 17 Jul 2009) | 2 lines
The output() function takes only one string argument.
................
r74054 | alexandre.vassalotti | 2009-07-17 10:31:44 +0200 (Fr, 17 Jul 2009) | 14 lines
Merged revisions 74051-74052 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74051 | alexandre.vassalotti | 2009-07-17 03:54:23 -0400 (Fri, 17 Jul 2009) | 2 lines
Initialize variables in PyCurses_getsyx() to avoid compiler warnings.
........
r74052 | alexandre.vassalotti | 2009-07-17 04:09:04 -0400 (Fri, 17 Jul 2009) | 3 lines
Fix GCC warning about fprintf used without a string literal and
without format arguments.
........
................
This commit is contained in:
parent
6b2964d6a4
commit
c3c6fed6fe
4 changed files with 9 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue