diff options
author | Oleg Iarygin <oleg@arhadthedev.net> | 2022-04-19 19:58:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 19:58:34 (GMT) |
commit | 312e16fb7be927521b453f427a28535f772a771c (patch) | |
tree | 53df6d613723dffa010efd678ee7f8310e8d558c /Misc/NEWS.d/next/Documentation/2022-03-08-22-10-38.bpo-46962.FIVe9I.rst | |
parent | cb3c85d40d2dfc1d518ebd7afd3d82819e38a390 (diff) | |
download | cpython-312e16fb7be927521b453f427a28535f772a771c.zip cpython-312e16fb7be927521b453f427a28535f772a771c.tar.gz cpython-312e16fb7be927521b453f427a28535f772a771c.tar.bz2 |
[3.9] gh-91118: Fix docstrings that do not honor --without-doc-strings (GH-31769) (#91664)
Co-authored-by: Éric <merwok@netwok.org>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
(cherry picked from commit a573cb2fec664c645ab744658d7e941d72e1a398)
Diffstat (limited to 'Misc/NEWS.d/next/Documentation/2022-03-08-22-10-38.bpo-46962.FIVe9I.rst')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2022-03-08-22-10-38.bpo-46962.FIVe9I.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2022-03-08-22-10-38.bpo-46962.FIVe9I.rst b/Misc/NEWS.d/next/Documentation/2022-03-08-22-10-38.bpo-46962.FIVe9I.rst new file mode 100644 index 0000000..f5b5401 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-03-08-22-10-38.bpo-46962.FIVe9I.rst @@ -0,0 +1,4 @@ +All docstrings in code snippets are now wrapped into :func:`PyDoc_STR` to +follow the guideline of `PEP 7's Documentation Strings paragraph +<https://www.python.org/dev/peps/pep-0007/#documentation-strings>`_. Patch +by Oleg Iarygin. |