diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-24 08:12:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 08:12:05 (GMT) |
commit | 03c14b04d3ce734d893f203d8c1d02262c308288 (patch) | |
tree | ecc885600bcef5ff607f76235be252c3771e3ba4 /Doc/library/sys.rst | |
parent | 0bbdfe611a17ef4de30b1d2f8a71f394db246b60 (diff) | |
download | cpython-03c14b04d3ce734d893f203d8c1d02262c308288.zip cpython-03c14b04d3ce734d893f203d8c1d02262c308288.tar.gz cpython-03c14b04d3ce734d893f203d8c1d02262c308288.tar.bz2 |
[3.12] Fix typo in sys docs (GH-111196) (#111248)
Co-authored-by: James Tocknell <aragilar+github@gmail.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc/library/sys.rst')
-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 3782d1e..e0668b8 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1778,7 +1778,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__ |