diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-06-29 05:46:54 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-06-29 05:46:54 (GMT) |
commit | 478c10554b366989b341af4017602571edfe9b2e (patch) | |
tree | d4f32db5aa64d5903682d8f8d36a29ffeb48af6f /Lib/inspect.py | |
parent | db3756dade0bba030946abcb8e50c914af84f31e (diff) | |
download | cpython-478c10554b366989b341af4017602571edfe9b2e.zip cpython-478c10554b366989b341af4017602571edfe9b2e.tar.gz cpython-478c10554b366989b341af4017602571edfe9b2e.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 0391201..1f49bcb 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -325,7 +325,7 @@ def getfile(object): object = object.f_code if iscode(object): return object.co_filename - raise TypeError('arg is not a module, class, method, ' + raise TypeError('arg is not a module, class, method, ' 'function, traceback, frame, or code object') def getmoduleinfo(path): |