diff options
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 408e454a8a..3b1061e8f9 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -612,5 +612,5 @@ def stack(context=1): return getouterframes(currentframe().f_back, context) def trace(context=1): - """Return a list of records for the stack below the current exception.""" + """Return a list of records for the stack below the current exception.""" return getinnerframes(sys.exc_traceback, context) |