[Python-checkins] Add missing single quote in io.TextIOWrapper.reconfigure documentation (GH-14246)

Miss Islington (bot) webhook-mailer at python.org
Wed Jun 19 17:07:50 EDT 2019


https://github.com/python/cpython/commit/7b2a913bd856880dc630212adc24f25c3c5017f8
commit: 7b2a913bd856880dc630212adc24f25c3c5017f8
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-06-19T14:07:45-07:00
summary:

Add missing single quote in io.TextIOWrapper.reconfigure documentation (GH-14246)


Add a missing single quote character in the documentation for `io.TextIOWrapper.reconfigure`.
(cherry picked from commit 35068bd059a3d9bff084ca9dcb04d51185b9ec3b)

Co-authored-by: Harmon <Harmon758 at gmail.com>

files:
M Doc/library/io.rst

diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 9738c5c2ad27..966fb9cc7663 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -924,7 +924,7 @@ Text I/O
       *errors*, *newline*, *line_buffering* and *write_through*.
 
       Parameters not specified keep current settings, except
-      ``errors='strict`` is used when *encoding* is specified but
+      ``errors='strict'`` is used when *encoding* is specified but
       *errors* is not specified.
 
       It is not possible to change the encoding or newline if some data



More information about the Python-checkins mailing list