diff options
author | Tal Einat <taleinat+github@gmail.com> | 2019-11-18 19:19:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 19:19:51 (GMT) |
commit | 476e76f7cf78598146140c3bda48d53cda50707c (patch) | |
tree | 51dce30f3c442c88924fe9d2d051ae645005c44f /Modules | |
parent | e243bae9999418859106328d9fce71815b7eb2fe (diff) | |
download | cpython-476e76f7cf78598146140c3bda48d53cda50707c.zip cpython-476e76f7cf78598146140c3bda48d53cda50707c.tar.gz cpython-476e76f7cf78598146140c3bda48d53cda50707c.tar.bz2 |
Revert "remove a strange non-ASCII character in _iomodule.c" (GH-17240)
This reverts commit bcc1cc5c, which removed an intentionally placed
"form feed" character.
Diffstat (limited to 'Modules')
-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 778b56d..5932363 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. */ |