diff options
author | JosephSBoyle <48555120+JosephSBoyle@users.noreply.github.com> | 2023-03-08 13:58:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 13:58:14 (GMT) |
commit | b097925858c6975c73e989226cf278cc382c0416 (patch) | |
tree | 1adce7e2f4ad49a61832067d30a4cd3a552e553b /Modules | |
parent | 401d7a7f009ca2e282b1a0d1b880dc602afd39dc (diff) | |
download | cpython-b097925858c6975c73e989226cf278cc382c0416.zip cpython-b097925858c6975c73e989226cf278cc382c0416.tar.gz cpython-b097925858c6975c73e989226cf278cc382c0416.tar.bz2 |
gh-102507 Remove invisible pagebreak characters (#102531)
Co-authored-by: AlexWaygood <alex.waygood@gmail.com>
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_io/bufferedio.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_io/bufferedio.c b/Modules/_io/bufferedio.c index 9600267..2c71768 100644 --- a/Modules/_io/bufferedio.c +++ b/Modules/_io/bufferedio.c @@ -1742,7 +1742,6 @@ _bufferedreader_peek_unlocked(buffered *self) self->pos = 0; return PyBytes_FromStringAndSize(self->buffer, r); } - /* @@ -2052,7 +2051,6 @@ error: LEAVE_BUFFERED(self) return res; } - /* @@ -2266,7 +2264,6 @@ bufferedrwpair_closed_get(rwpair *self, void *context) } return PyObject_GetAttr((PyObject *) self->writer, &_Py_ID(closed)); } - /* |