diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-12-26 11:52:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-26 11:52:46 (GMT) |
commit | a55082085cbc59733ecc932cc2e7d544be8c6a7d (patch) | |
tree | 8978c2531be99451d2204e4ca8bfb84d1c41e6c2 /Doc | |
parent | cfdb2302f48b4da5cf4ee78c092edf1f447ae494 (diff) | |
download | cpython-a55082085cbc59733ecc932cc2e7d544be8c6a7d.zip cpython-a55082085cbc59733ecc932cc2e7d544be8c6a7d.tar.gz cpython-a55082085cbc59733ecc932cc2e7d544be8c6a7d.tar.bz2 |
Fix typo in io.rst (GH-30218)
(cherry picked from commit f9a4352056175d96195d4cb54c97c1334ea5150c)
Co-authored-by: David Gilbertson <gilbertson.david@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/io.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 0881015..de88c57 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -131,7 +131,7 @@ explicitly when opening text files. If you want to use UTF-8, pass ``encoding="utf-8"``. To use the current locale encoding, ``encoding="locale"`` is supported in Python 3.10. -When you need to run existing code on Windows that attempts to opens +When you need to run existing code on Windows that attempts to open UTF-8 files using the default locale encoding, you can enable the UTF-8 mode. See :ref:`UTF-8 mode on Windows <win-utf8-mode>`. |