diff options
author | Skip Montanaro <skip.montanaro@gmail.com> | 2024-01-18 22:18:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 22:18:42 (GMT) |
commit | 72abb8c5d487ead9eb115fec8132ccef5ba189e5 (patch) | |
tree | cb8111dc4a58e39d0d6a1deca86d858b823b40aa /Misc/NEWS.d/next/Documentation | |
parent | 68a7b78cd5185cbd9456f42c15ecf872a7c16f44 (diff) | |
download | cpython-72abb8c5d487ead9eb115fec8132ccef5ba189e5.zip cpython-72abb8c5d487ead9eb115fec8132ccef5ba189e5.tar.gz cpython-72abb8c5d487ead9eb115fec8132ccef5ba189e5.tar.bz2 |
gh-114123: Migrate docstring from _csv to csv (#114124)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Éric <merwok@netwok.org>
Diffstat (limited to 'Misc/NEWS.d/next/Documentation')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2024-01-17-11-40-03.gh-issue-114123.LuueXf.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2024-01-17-11-40-03.gh-issue-114123.LuueXf.rst b/Misc/NEWS.d/next/Documentation/2024-01-17-11-40-03.gh-issue-114123.LuueXf.rst new file mode 100644 index 0000000..1d93a42 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2024-01-17-11-40-03.gh-issue-114123.LuueXf.rst @@ -0,0 +1,7 @@ +Move the :mod:`csv` module docstring to the :mod:`!csv` module +instead of reexporting it from the internal :mod:`!_csv` module, +and remove ``__doc__`` from ``csv.__all__``. + +Move :attr:`!csv.__version__` to the :mod:`!csv` module +instead of reexporting it from the internal :mod:`!_csv` module, +and remove ``__version__`` from ``csv.__all__``. |