From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 7 Apr 2022 00:50:04 +0000 (-0700) Subject: stdtypes docs: fix typo (GH-32349) (GH-32370) X-Git-Tag: v3.10.5~193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=55abb0ef25d9ecabc6fe93cf0d38f19268b5859c;p=thirdparty%2FPython%2Fcpython.git stdtypes docs: fix typo (GH-32349) (GH-32370) (cherry picked from commit b33c4564aceeae8323bcb19167fbbd2d5f5002bc) Co-authored-by: Ian <40774387+isteptoe@users.noreply.github.com> --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 28082b42d792..f60e936089c2 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3580,7 +3580,7 @@ The conversion types are: | | be used for Python2/3 code bases. | | +------------+-----------------------------------------------------+-------+ | ``'a'`` | Bytes (converts any Python object using | \(5) | -| | ``repr(obj).encode('ascii','backslashreplace)``). | | +| | ``repr(obj).encode('ascii', 'backslashreplace')``). | | +------------+-----------------------------------------------------+-------+ | ``'r'`` | ``'r'`` is an alias for ``'a'`` and should only | \(7) | | | be used for Python2/3 code bases. | |