[Python-checkins] Revert "remove a strange non-ASCII character in _iomodule.c" (GH-17240)

Tal Einat webhook-mailer at python.org
Mon Nov 18 14:19:55 EST 2019


https://github.com/python/cpython/commit/476e76f7cf78598146140c3bda48d53cda50707c
commit: 476e76f7cf78598146140c3bda48d53cda50707c
branch: master
author: Tal Einat <taleinat+github at gmail.com>
committer: GitHub <noreply at github.com>
date: 2019-11-18T21:19:51+02:00
summary:

Revert "remove a strange non-ASCII character in _iomodule.c" (GH-17240)

This reverts commit bcc1cc5c,  which removed an intentionally placed
"form feed" character.

files:
M Modules/_io/_iomodule.c

diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c
index 778b56d475ee5..5932363f3af35 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.
  */



More information about the Python-checkins mailing list