diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-05-13 17:14:11 +0000 |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-05-13 17:14:11 +0000 |
commit | 996ba0260209aaac0e1cd29516dc2ba7120c698b (patch) | |
tree | e6e36f7bbf06e42d4b29900c29873c6ed8f197f8 /Lib/inspect.py | |
parent | 525cffcd7e7fc92d04ddff938c7c60d201d377de (diff) | |
download | cpython-git-996ba0260209aaac0e1cd29516dc2ba7120c698b.tar.gz |
Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source'
file is a binary. Patch by Brodie Rao, test by Daniel Diniz.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 1453f3b7cf..3305c8d040 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -523,7 +523,9 @@ 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) or getfile(object) + file = getsourcefile(object) + if not file: + raise IOError('source code not available') module = getmodule(object, file) if module: lines = linecache.getlines(file, module.__dict__) |