diff options
author | Ian <40774387+isteptoe@users.noreply.github.com> | 2022-04-06 15:39:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 15:39:17 (GMT) |
commit | b33c4564aceeae8323bcb19167fbbd2d5f5002bc (patch) | |
tree | 4be79ecb1cb96b04ea212e34e8ab899c1dad97e9 | |
parent | ac1fb07b6ecb6b93446484f52894914e5199de63 (diff) | |
download | cpython-b33c4564aceeae8323bcb19167fbbd2d5f5002bc.zip cpython-b33c4564aceeae8323bcb19167fbbd2d5f5002bc.tar.gz cpython-b33c4564aceeae8323bcb19167fbbd2d5f5002bc.tar.bz2 |
stdtypes docs: fix typo (GH-32349)
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 6608b7b..d6d90cd 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3618,7 +3618,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. | | |