]> granicus.if.org Git - python/commitdiff
allow "fake" filenames in findsource (closes #9284)
authorBenjamin Peterson <benjamin@python.org>
Sat, 11 Jun 2011 20:53:11 +0000 (15:53 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sat, 11 Jun 2011 20:53:11 +0000 (15:53 -0500)
This allows findsource() to work in doctests.

A patch from Dirkjan Ochtman.

Lib/inspect.py
Lib/test/test_inspect.py
Misc/NEWS

index 4899cbf9f05ccfe889c43a12c36219bb4b9dc41e..bb46ea6f85c08170f8bbe6d75391c32222e3635f 100644 (file)
@@ -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__)
index f5dff1e54393bd5f27e8d497d4674df22bfc4e3c..7666fe43a7339b4904fe73461949fc4e4fd81f70 100644 (file)
@@ -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
 
index d3496b0f2d1172a19bb9f9b96827244f71c52593..de1c53102531f50b08764f85a1da41e3b070670b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #9284: Allow inspect.findsource() to find the source of doctest
+  functions.
+
 - Issue #12009: Fixed regression in netrc file comment handling.
 
 - Issue #10694: zipfile now ignores garbage at the end of a zipfile.