summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2020-12-15 14:14:35 (GMT)
committerGitHub <noreply@github.com>2020-12-15 14:14:35 (GMT)
commit6a02b384751dbc13979efc1185f0a7c1670dc349 (patch)
tree067b172fa38efe134d6ac61f8a594796c9861f6c /Misc
parentb8fa135908d294b350cdad04e2f512327a538dee (diff)
downloadcpython-6a02b384751dbc13979efc1185f0a7c1670dc349.zip
cpython-6a02b384751dbc13979efc1185f0a7c1670dc349.tar.gz
cpython-6a02b384751dbc13979efc1185f0a7c1670dc349.tar.bz2
bpo-14935: Remove static state from the _csv module (GH-23224)
Uses code from: https://github.com/python/cpython/pull/16078 Co-authored-by: Marcel Plch <gmarcel.plch@gmail.com> Co-authored-by: Eddie Elizondo <eduardo.elizondorueda@gmail.com> Co-authored-by: Hai Shi <shihai1992@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-20-23-28-55.bpo-1635741.Iyka3r.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-20-23-28-55.bpo-1635741.Iyka3r.rst b/Misc/NEWS.d/next/Library/2020-10-20-23-28-55.bpo-1635741.Iyka3r.rst
new file mode 100644
index 0000000..e14e9a1
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-10-20-23-28-55.bpo-1635741.Iyka3r.rst
@@ -0,0 +1 @@
+Port the _csv module to the multi-phase initialization API (:pep:`489`).