[Python-checkins] Insert a missing close parenthesis (GH-15316)

Carol Willing webhook-mailer at python.org
Sat Aug 17 16:40:27 EDT 2019


https://github.com/python/cpython/commit/455856391c2b4e2af79de55101421cd15901edaf
commit: 455856391c2b4e2af79de55101421cd15901edaf
branch: master
author: cocoatomo <cocoatomo77 at gmail.com>
committer: Carol Willing <carolcode at willingconsulting.com>
date: 2019-08-18T05:40:23+09:00
summary:

Insert a missing close parenthesis (GH-15316)

files:
M Doc/c-api/veryhigh.rst

diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst
index 67dc11dfa9a5..cc194c200a37 100644
--- a/Doc/c-api/veryhigh.rst
+++ b/Doc/c-api/veryhigh.rst
@@ -117,7 +117,7 @@ the same library that the Python runtime is using.
    closed before PyRun_SimpleFileExFlags returns.
 
    .. note::
-      On Windows, *fp* should be opened as binary mode (e.g. ``fopen(filename, "rb")``.
+      On Windows, *fp* should be opened as binary mode (e.g. ``fopen(filename, "rb")``).
       Otherwise, Python may not handle script file with LF line ending correctly.
 
 



More information about the Python-checkins mailing list