diff options
author | James Tocknell <aragilar+github@gmail.com> | 2023-10-24 08:03:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 08:03:35 (GMT) |
commit | 6b9babf140445ec2a560d1df056b795e898c6bd0 (patch) | |
tree | 1077734139349c31ed3ab4711ec15a05bc72204c /Doc | |
parent | 6640f1d8d2462ca0877e1d2789e1721767e9caf2 (diff) | |
download | cpython-6b9babf140445ec2a560d1df056b795e898c6bd0.zip cpython-6b9babf140445ec2a560d1df056b795e898c6bd0.tar.gz cpython-6b9babf140445ec2a560d1df056b795e898c6bd0.tar.bz2 |
Fix typo in sys docs (#111196)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 8eeeefa..5ef6f83 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1780,7 +1780,7 @@ always available. However, if you are writing a library (and do not control in which context its code will be executed), be aware that the standard streams may be replaced with file-like objects like :class:`io.StringIO` which - do not support the :attr:!buffer` attribute. + do not support the :attr:`!buffer` attribute. .. data:: __stdin__ |