diff options
author | Tal Einat <taleinat+github@gmail.com> | 2019-11-18 20:39:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 20:39:47 +0200 |
commit | bcc1cc5cc38b57ac55cbe710849374258d610a08 (patch) | |
tree | d77f555470f33770613211878a531df66e9c7bea /Modules/_io | |
parent | bpo-38809: Windows build scripts use python.exe from virtual envs (GH-17164) (diff) | |
download | cpython-bcc1cc5cc38b57ac55cbe710849374258d610a08.tar.gz cpython-bcc1cc5cc38b57ac55cbe710849374258d610a08.tar.bz2 cpython-bcc1cc5cc38b57ac55cbe710849374258d610a08.zip |
remove a strange non-ASCII character in _iomodule.c (GH-17239)
Diffstat (limited to 'Modules/_io')
-rw-r--r-- | Modules/_io/_iomodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c index 5932363f3af..778b56d475e 100644 --- a/Modules/_io/_iomodule.c +++ b/Modules/_io/_iomodule.c @@ -503,7 +503,7 @@ _io_open_code_impl(PyObject *module, PyObject *path) { return PyFile_OpenCodeObject(path); } - + /* * Private helpers for the io module. */ |