diff options
author | Philip Jenvey <pjenvey@underboss.org> | 2012-10-01 19:53:43 (GMT) |
---|---|---|
committer | Philip Jenvey <pjenvey@underboss.org> | 2012-10-01 19:53:43 (GMT) |
commit | 4993cc0a5b34dc91da2b41c50e33d809f0191355 (patch) | |
tree | 5f4a1327469a43d4bbaa876e13e22a316731775d /Lib/traceback.py | |
parent | 075bbb176f69e3da013e39d847caaea9b0cee334 (diff) | |
download | cpython-4993cc0a5b34dc91da2b41c50e33d809f0191355.zip cpython-4993cc0a5b34dc91da2b41c50e33d809f0191355.tar.gz cpython-4993cc0a5b34dc91da2b41c50e33d809f0191355.tar.bz2 |
utilize yield from
Diffstat (limited to 'Lib/traceback.py')
-rw-r--r-- | Lib/traceback.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/traceback.py b/Lib/traceback.py index eeb9e73..33b86c7 100644 --- a/Lib/traceback.py +++ b/Lib/traceback.py @@ -132,8 +132,7 @@ def _iter_chain(exc, custom_tb=None, seen=None): its.append([(exc, custom_tb or exc.__traceback__)]) # itertools.chain is in an extension module and may be unavailable for it in its: - for x in it: - yield x + yield from it def print_exception(etype, value, tb, limit=None, file=None, chain=True): |