diff options
author | Brian Kearns <bdkearns@gmail.com> | 2014-03-01 15:44:32 -0500 |
---|---|---|
committer | Brian Kearns <bdkearns@gmail.com> | 2014-03-01 15:44:32 -0500 |
commit | e418f55355fc5805900cb723724449975118eb99 (patch) | |
tree | 189b1dac2798b7964032f9332bf47c83046bb6db /lib-python/2.7/traceback.py | |
parent | Update vendor/stdlib to CPython 2.7.5 (necaris, rxe) (diff) | |
download | pypy-e418f55355fc5805900cb723724449975118eb99.tar.gz pypy-e418f55355fc5805900cb723724449975118eb99.tar.bz2 pypy-e418f55355fc5805900cb723724449975118eb99.zip |
update python 2 stdlib to 2.7.6
Diffstat (limited to 'lib-python/2.7/traceback.py')
-rw-r--r-- | lib-python/2.7/traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-python/2.7/traceback.py b/lib-python/2.7/traceback.py index da17d3a1f8..5ad2838fcf 100644 --- a/lib-python/2.7/traceback.py +++ b/lib-python/2.7/traceback.py @@ -72,7 +72,7 @@ def print_tb(tb, limit=None, file=None): n = n+1 def format_tb(tb, limit = None): - """A shorthand for 'format_list(extract_stack(f, limit)).""" + """A shorthand for 'format_list(extract_tb(tb, limit))'.""" return format_list(extract_tb(tb, limit)) def extract_tb(tb, limit = None): |