mirror of
https://github.com/python/cpython.git
synced 2025-08-21 17:25:34 +00:00
allow "fake" filenames in findsource (closes #9284)
This allows findsource() to work in doctests. A patch from Dirkjan Ochtman.
This commit is contained in:
parent
6abd97e3b2
commit
0eb4ac4c62
3 changed files with 26 additions and 2 deletions
|
@ -524,9 +524,13 @@ def findsource(object):
|
||||||
or code object. The source code is returned as a list of all the lines
|
or code object. The source code is returned as a list of all the lines
|
||||||
in the file and the line number indexes a line in that list. An IOError
|
in the file and the line number indexes a line in that list. An IOError
|
||||||
is raised if the source code cannot be retrieved."""
|
is raised if the source code cannot be retrieved."""
|
||||||
file = getsourcefile(object)
|
|
||||||
if not file:
|
file = getfile(object)
|
||||||
|
sourcefile = getsourcefile(object)
|
||||||
|
if not sourcefile and file[0] + file[-1] != '<>':
|
||||||
raise IOError('source code not available')
|
raise IOError('source code not available')
|
||||||
|
file = sourcefile if sourcefile else file
|
||||||
|
|
||||||
module = getmodule(object, file)
|
module = getmodule(object, file)
|
||||||
if module:
|
if module:
|
||||||
lines = linecache.getlines(file, module.__dict__)
|
lines = linecache.getlines(file, module.__dict__)
|
||||||
|
|
|
@ -295,6 +295,23 @@ class TestRetrievingSourceCode(GetSourceBase):
|
||||||
del sys.modules[name]
|
del sys.modules[name]
|
||||||
inspect.getmodule(compile('a=10','','single'))
|
inspect.getmodule(compile('a=10','','single'))
|
||||||
|
|
||||||
|
def test_proceed_with_fake_filename(self):
|
||||||
|
'''doctest monkeypatches linecache to enable inspection'''
|
||||||
|
fn, source = '<test>', 'def x(): pass\n'
|
||||||
|
getlines = linecache.getlines
|
||||||
|
def monkey(filename, module_globals=None):
|
||||||
|
if filename == fn:
|
||||||
|
return source.splitlines(True)
|
||||||
|
else:
|
||||||
|
return getlines(filename, module_globals)
|
||||||
|
linecache.getlines = monkey
|
||||||
|
try:
|
||||||
|
ns = {}
|
||||||
|
exec compile(source, fn, 'single') in ns
|
||||||
|
inspect.getsource(ns["x"])
|
||||||
|
finally:
|
||||||
|
linecache.getlines = getlines
|
||||||
|
|
||||||
class TestDecorators(GetSourceBase):
|
class TestDecorators(GetSourceBase):
|
||||||
fodderFile = mod2
|
fodderFile = mod2
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #9284: Allow inspect.findsource() to find the source of doctest
|
||||||
|
functions.
|
||||||
|
|
||||||
- Issue #10694: zipfile now ignores garbage at the end of a zipfile.
|
- Issue #10694: zipfile now ignores garbage at the end of a zipfile.
|
||||||
|
|
||||||
- Issue #11583: Speed up os.path.isdir on Windows by using GetFileAttributes
|
- Issue #11583: Speed up os.path.isdir on Windows by using GetFileAttributes
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue