
Replying to python-committers for visibility, although maybe python-dev would be better. That's not a "strange non-ASCII character"! That's a form feed (control-L), definitely defined by ASCII. There are plenty of these in the code. Some people (who won't be named, but match the regex "Barry") like them. I don't think we should start removing them. Eric On 11/18/2019 1:40 PM, Tal Einat wrote:
https://github.com/python/cpython/commit/bcc1cc5cc38b57ac55cbe710849374258d6... commit: bcc1cc5cc38b57ac55cbe710849374258d610a08 branch: master author: Tal Einat <taleinat+github@gmail.com> committer: GitHub <noreply@github.com> date: 2019-11-18T20:39:47+02:00 summary:
remove a strange non-ASCII character in _iomodule.c (GH-17239)
files: M Modules/_io/_iomodule.c
diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c index 5932363f3af35..778b56d475ee5 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. */
_______________________________________________ Python-checkins mailing list Python-checkins@python.org https://mail.python.org/mailman/listinfo/python-checkins