Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def _validate(self):
try:
_Dialect(self)
except TypeError as e:
# We do this for compatibility with py2.3
raise Error(str(e))
# Re-raise to get a traceback showing more user code.
raise Error(str(e)) from None

class excel(Dialect):
"""Describe the usual properties of Excel-generated CSV files."""
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
When csv.Error is raised when handling TypeError, do not print the TypeError
traceback.