summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
authorKa-Ping Yee <ping@zesty.ca>2001-03-02 02:08:53 (GMT)
committerKa-Ping Yee <ping@zesty.ca>2001-03-02 02:08:53 (GMT)
commitc113c24e19e0a120574bfb6c64859cd74d81ca5d (patch)
tree2ffaa716401667777b73dcd33ded7443a86af703 /Lib/inspect.py
parent0a8c29be4b5314d4bf72cb391ab078f7483cf3f7 (diff)
downloadcpython-c113c24e19e0a120574bfb6c64859cd74d81ca5d.zip
cpython-c113c24e19e0a120574bfb6c64859cd74d81ca5d.tar.gz
cpython-c113c24e19e0a120574bfb6c64859cd74d81ca5d.tar.bz2
Clarify the purpose of getsourcefile().
Add getabsfile() for getting a most-normalized path.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py31
1 files changed, 19 insertions, 12 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index ac0ee44..7cf0771 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -169,7 +169,7 @@ def getdoc(object):
return string.join(lines, '\n')
def getfile(object):
- """Try to guess which (text or binary) file an object was defined in."""
+ """Work out which source or compiled file an object was defined in."""
if ismodule(object):
if hasattr(object, '__file__'):
return object.__file__
@@ -192,6 +192,21 @@ def getfile(object):
raise TypeError, 'arg is not a module, class, method, ' \
'function, traceback, frame, or code object'
+def getsourcefile(object):
+ """Return the Python source file an object was defined in, if it exists."""
+ filename = getfile(object)
+ if string.lower(filename[-4:]) in ['.pyc', '.pyo']:
+ filename = filename[:-4] + '.py'
+ if string.lower(filename[-3:]) == '.py' and os.path.exists(filename):
+ return filename
+
+def getabsfile(object):
+ """Return an absolute path to the source file or compiled file for an object.
+
+ The idea is for each object to have a unique origin, so this routine normalizes
+ the result as much as possible."""
+ return os.path.normcase(os.path.abspath(getsourcefile(object) or getfile(object)))
+
modulesbyfile = {}
def getmodule(object):
@@ -199,15 +214,14 @@ def getmodule(object):
if isclass(object):
return sys.modules.get(object.__module__)
try:
- file = os.path.abspath(getsourcefile(object))
+ file = getabsfile(object)
except TypeError:
return None
if modulesbyfile.has_key(file):
return sys.modules[modulesbyfile[file]]
for module in sys.modules.values():
if hasattr(module, '__file__'):
- modulesbyfile[
- os.path.abspath(getsourcefile(module))] = module.__name__
+ modulesbyfile[getabsfile(module)] = module.__name__
if modulesbyfile.has_key(file):
return sys.modules[modulesbyfile[file]]
main = sys.modules['__main__']
@@ -221,13 +235,6 @@ def getmodule(object):
if builtinobject is object: return builtin
except AttributeError: pass
-def getsourcefile(object):
- """Try to guess which Python source file an object was defined in."""
- filename = getfile(object)
- if filename[-4:] == '.pyc':
- filename = filename[:-4] + '.py'
- return filename
-
def findsource(object):
"""Return the entire source file and starting line number for an object.
@@ -571,7 +578,7 @@ def getframeinfo(frame, context=1):
start = min(start, len(lines) - context)
lines = lines[start:start+context]
index = lineno - 1 - start
- except:
+ except IOError:
lines = index = None
else:
lines = index = None