diff options
author | Georg Brandl <georg@python.org> | 2013-10-13 21:34:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-13 21:34:06 (GMT) |
commit | 64bed06036e42e6a380ffc9257638d3a40294ecc (patch) | |
tree | 4ceeff2899c9b27d744bd7b8ab0171f7fd2aeda0 /Lib/traceback.py | |
parent | b3e4144c95fb80d5d46c54bdfc74b10de490dd24 (diff) | |
parent | 9e091e120bad18841a041229aeff7e8fa611d337 (diff) | |
download | cpython-64bed06036e42e6a380ffc9257638d3a40294ecc.zip cpython-64bed06036e42e6a380ffc9257638d3a40294ecc.tar.gz cpython-64bed06036e42e6a380ffc9257638d3a40294ecc.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Lib/traceback.py')
-rw-r--r-- | Lib/traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py index d5b3752..3b2cae7 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -89,7 +89,7 @@ def print_tb(tb, limit=None, file=None): print_list(extract_tb(tb, limit=limit), file=file) def format_tb(tb, limit=None): - """A shorthand for 'format_list(extract_tb(tb, limit)).""" + """A shorthand for 'format_list(extract_tb(tb, limit))'.""" return format_list(extract_tb(tb, limit=limit)) def extract_tb(tb, limit=None): |