diff options
author | cocoatomo <cocoatomo77@gmail.com> | 2019-08-17 20:40:23 (GMT) |
---|---|---|
committer | Carol Willing <carolcode@willingconsulting.com> | 2019-08-17 20:40:23 (GMT) |
commit | 455856391c2b4e2af79de55101421cd15901edaf (patch) | |
tree | faab0f0de6e917966610788904563ef0f2c51ec6 /Doc/c-api | |
parent | 1b1d0514adbcdd859817c63d1410455c64660d78 (diff) | |
download | cpython-455856391c2b4e2af79de55101421cd15901edaf.zip cpython-455856391c2b4e2af79de55101421cd15901edaf.tar.gz cpython-455856391c2b4e2af79de55101421cd15901edaf.tar.bz2 |
Insert a missing close parenthesis (GH-15316)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/veryhigh.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst index 67dc11d..cc194c2 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. |