From: Victor Stinner Date: Fri, 6 Sep 2024 14:08:17 +0000 (+0200) Subject: gh-121645: Fix typo in PyBytes_Join() doc (#123783) X-Git-Tag: v3.14.0a1~560 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d343f977ba89c415aa4dcaf75122e0b4235d4fb1;p=thirdparty%2FPython%2Fcpython.git gh-121645: Fix typo in PyBytes_Join() doc (#123783) --- diff --git a/Doc/c-api/bytes.rst b/Doc/c-api/bytes.rst index 3d0501c8253f..d47beee68eaa 100644 --- a/Doc/c-api/bytes.rst +++ b/Doc/c-api/bytes.rst @@ -204,7 +204,7 @@ called with a non-bytes parameter. On success, return a new :class:`bytes` object. On error, set an exception and return ``NULL``. - .. versionadded: 3.14 + .. versionadded:: 3.14 .. c:function:: int _PyBytes_Resize(PyObject **bytes, Py_ssize_t newsize)