Skip to content

gh-114628: Display csv.Error without context #115005

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 5, 2024
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.