summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-11 20:56:46 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-06-11 20:56:46 (GMT)
commit703f7c4bf5fa98f9b8b11593d3fa37eb68eae896 (patch)
treea4fe76c58a8cc614a02aaaed497289fcfc345934 /Lib
parent3ae42726d4ba3a304d42f0c7df039de777a678bb (diff)
parent9620cc04634e720d1d016cce4bf02e0c27607e64 (diff)
downloadcpython-703f7c4bf5fa98f9b8b11593d3fa37eb68eae896.zip
cpython-703f7c4bf5fa98f9b8b11593d3fa37eb68eae896.tar.gz
cpython-703f7c4bf5fa98f9b8b11593d3fa37eb68eae896.tar.bz2
merge 3.2 (#9284)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/inspect.py8
-rw-r--r--Lib/test/test_inspect.py17
2 files changed, 23 insertions, 2 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index f200a82..aa4c30f 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -518,9 +518,13 @@ def findsource(object):
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
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')
+ file = sourcefile if sourcefile else file
+
module = getmodule(object, file)
if module:
lines = linecache.getlines(file, module.__dict__)
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index f5dff1e..7666fe4 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -298,6 +298,23 @@ class TestRetrievingSourceCode(GetSourceBase):
del sys.modules[name]
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'), ns)
+ inspect.getsource(ns["x"])
+ finally:
+ linecache.getlines = getlines
+
class TestDecorators(GetSourceBase):
fodderModule = mod2