[issue44089] csv.Error can't be subclassed

2021-05-12 Thread Senthil Kumaran
Senthil Kumaran added the comment: This was also merged in 3.11 https://github.com/python/cpython/commit/2b458c1dba4058c808fde25226bb2d91c5a909ca -- ___ Python tracker ___ __

[issue44089] csv.Error can't be subclassed

2021-05-12 Thread Senthil Kumaran
Change by Senthil Kumaran : -- assignee: -> orsenthil resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue44089] csv.Error can't be subclassed

2021-05-12 Thread Senthil Kumaran
Senthil Kumaran added the comment: New changeset 3e44e9af9ea4c5e82912a01f256d4abcae96f32b by Miss Islington (bot) in branch '3.10': bpo-44089: Allow subclassing of ``csv.Error`` (GH-26008) (GH-26066) https://github.com/python/cpython/commit/3e44e9af9ea4c5e82912a01f256d4abcae96f32b -

[issue44089] csv.Error can't be subclassed

2021-05-12 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24707 pull_request: https://github.com/python/cpython/pull/26066 ___ Python tracker _

[issue44089] csv.Error can't be subclassed

2021-05-09 Thread Ken Jin
Change by Ken Jin : -- keywords: +patch nosy: +kj nosy_count: 2.0 -> 3.0 pull_requests: +24659 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26008 ___ Python tracker ___

[issue44089] csv.Error can't be subclassed

2021-05-09 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +petr.viktorin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44089] csv.Error can't be subclassed

2021-05-09 Thread Oleg Hoefling
New submission from Oleg Hoefling : Due to changes introduced in https://bugs.python.org/issue14935 the `csv.Error` can't be subclassed in 3.10. To reproduce: Python 3.9.4 (default, Apr 6 2021, 00:00:00) >>> import csv >>> class C(csv.Error): ... pass Python 3.10.0b1 (default, May 4 20