summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-11 20:53:11 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-06-11 20:53:11 (GMT)
commit9620cc04634e720d1d016cce4bf02e0c27607e64 (patch)
tree2ec667b21d599bada69991c37907a65bb8398417 /Lib/inspect.py
parent9fbfe15c86a079f03f54b20106cdefa402325330 (diff)
downloadcpython-9620cc04634e720d1d016cce4bf02e0c27607e64.zip
cpython-9620cc04634e720d1d016cce4bf02e0c27607e64.tar.gz
cpython-9620cc04634e720d1d016cce4bf02e0c27607e64.tar.bz2
allow "fake" filenames in findsource (closes #9284)
This allows findsource() to work in doctests. A patch from Dirkjan Ochtman.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 4899cbf..bb46ea6 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__)