[issue44630] Assertion failure in csv module

2021-07-13 Thread Gregory P. Smith
Gregory P. Smith added the comment: Thanks! Things like this both internal to CPython and in CPython API misuse in all sorts of third party extension modules are why i think we as a project really should to encourage more CI systems to have -UNDEBUG builds of CPython available and in use

[issue44630] Assertion failure in csv module

2021-07-13 Thread miss-islington
miss-islington added the comment: New changeset fe73509c5ba3844b45a2253967522531ab80c849 by Miss Islington (bot) in branch '3.9': bpo-44630: Fix assertion errors in csv module (GH-27127) https://github.com/python/cpython/commit/fe73509c5ba3844b45a2253967522531ab80c849 --

[issue44630] Assertion failure in csv module

2021-07-13 Thread miss-islington
miss-islington added the comment: New changeset bb260c2a212aee2a7d7a32bf5208fd554bf72713 by Miss Islington (bot) in branch '3.10': [3.10] bpo-44630: Fix assertion errors in csv module (GH-27127) (GH-27129) https://github.com/python/cpython/commit/bb260c2a212aee2a7d7a32bf5208fd554bf72713

[issue44630] Assertion failure in csv module

2021-07-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +25673 pull_request: https://github.com/python/cpython/pull/27130 ___ Python tracker ___

[issue44630] Assertion failure in csv module

2021-07-13 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +25672 pull_request: https://github.com/python/cpython/pull/27129 ___ Python tracker

[issue44630] Assertion failure in csv module

2021-07-13 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 0093876328afa330224c9d887c18dee0b3117852 by T. Wouters in branch 'main': bpo-44630: Fix assertion errors in csv module (GH-27127) https://github.com/python/cpython/commit/0093876328afa330224c9d887c18dee0b3117852 --

[issue44630] Assertion failure in csv module

2021-07-13 Thread Thomas Wouters
Change by Thomas Wouters : -- keywords: +patch pull_requests: +25670 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27127 ___ Python tracker ___

[issue44630] Assertion failure in csv module

2021-07-13 Thread Thomas Wouters
New submission from Thomas Wouters : The csv module has some incorrect exception handling when dealing with dialect objects that are not csv.Dialect subclasses (or that otherwise raise errors when accessing the dialect attributes): >>> csv.reader([], dialect=None) python: