diff options
author | Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> | 2021-05-12 13:47:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 13:47:11 (GMT) |
commit | 2b458c1dba4058c808fde25226bb2d91c5a909ca (patch) | |
tree | f360414ffb21f6e1e0de9d18fee969f90fd873cc /Misc | |
parent | 5010c044c73ee55d0fd578cfecd3f4c3f01a4140 (diff) | |
download | cpython-2b458c1dba4058c808fde25226bb2d91c5a909ca.zip cpython-2b458c1dba4058c808fde25226bb2d91c5a909ca.tar.gz cpython-2b458c1dba4058c808fde25226bb2d91c5a909ca.tar.bz2 |
bpo-44089: Allow subclassing of ``csv.Error`` (GH-26008)
* fix subclass error
* Update 2021-05-09-22-52-34.bpo-44089.IoANsN.rst
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-05-09-22-52-34.bpo-44089.IoANsN.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-05-09-22-52-34.bpo-44089.IoANsN.rst b/Misc/NEWS.d/next/Library/2021-05-09-22-52-34.bpo-44089.IoANsN.rst new file mode 100644 index 0000000..b9bd963 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-05-09-22-52-34.bpo-44089.IoANsN.rst @@ -0,0 +1,2 @@ +Allow subclassing ``csv.Error`` in 3.10 (it was allowed in 3.9 and earlier but +was disallowed in early versions of 3.10). |