Issue 1025: tracebacks from list comps (probably other comps) don't show full stack (original) (raw)

Issue1025

Created on 2007-08-26 03:37 by nnorwitz, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg55303 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2007-08-26 03:37
A traceback that occurs within a list comprehension (and probably all comprehensions) only shows the stack from the comprehension, not the entire scope: Traceback (most recent call last): File "Lib/test/test_multibytecodec_support.py", line 35, in test_chunkcoding for f in self.tstring]): File "Lib/test/test_multibytecodec_support.py", line 35, in for f in self.tstring]): UnicodeDecodeError: 'utf8' codec can't decode byte 0xa6 in position 0: unexpected code byte
msg66799 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-05-13 19:32
This seems to be fixed in current SVN.
History
Date User Action Args
2022-04-11 14:56:26 admin set github: 45366
2008-05-13 19:32:15 georg.brandl set status: open -> closedresolution: out of datemessages: + nosy: + georg.brandl
2008-01-06 22:29:45 admin set keywords: - py3kversions: Python 3.0
2007-09-17 06:29:23 jafo set priority: normal
2007-08-26 03:37:20 nnorwitz create