This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ZackerySpytz
Recipients ZackerySpytz
Date 2019-11-29.20:20:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1575058849.67.0.456727251778.issue38942@roundup.psfhosted.org>
In-reply-to
Content
dialect_new() in Modules/_csv.c calls PyObject_GetAttrString() repeatedly without
checking if an error occurred. If an exception (like MemoryError) is raised during one of the
PyObject_GetAttrString() calls, an assertion failure will occur during the next call.
History
Date User Action Args
2019-11-29 20:20:49ZackerySpytzsetrecipients: + ZackerySpytz
2019-11-29 20:20:49ZackerySpytzsetmessageid: <1575058849.67.0.456727251778.issue38942@roundup.psfhosted.org>
2019-11-29 20:20:49ZackerySpytzlinkissue38942 messages
2019-11-29 20:20:48ZackerySpytzcreate