]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-44687: Ensure BufferedReader objects with unread buffers can peek even when the...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 1 Oct 2021 20:46:25 +0000 (13:46 -0700)
committerGitHub <noreply@github.com>
Fri, 1 Oct 2021 20:46:25 +0000 (21:46 +0100)
Co-authored-by: AngstyDuck <solsticedante@gmail.com>
Misc/NEWS.d/next/C API/2021-09-19-17-18-25.bpo-44687.3fqDRC.rst [new file with mode: 0644]
Modules/_io/bufferedio.c

diff --git a/Misc/NEWS.d/next/C API/2021-09-19-17-18-25.bpo-44687.3fqDRC.rst b/Misc/NEWS.d/next/C API/2021-09-19-17-18-25.bpo-44687.3fqDRC.rst
new file mode 100644 (file)
index 0000000..d38fa60
--- /dev/null
@@ -0,0 +1 @@
+:meth:`BufferedReader.peek` no longer raises :exc:`ValueError` when the entire file has already been buffered.
index f8e21f206f316ad647c7d42ba8d470323b16a21c..b0fe9e4589102570ef186ed8568b919a83aa4c33 100644 (file)
@@ -341,11 +341,10 @@ _enter_buffered_busy(buffered *self)
      : buffered_closed(self)))
 
 #define CHECK_CLOSED(self, error_msg) \
-    if (IS_CLOSED(self)) { \
+    if (IS_CLOSED(self) & (Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t) == 0)) { \
         PyErr_SetString(PyExc_ValueError, error_msg); \
         return NULL; \
-    }
-
+    } \
 
 #define VALID_READ_BUFFER(self) \
     (self->readable && self->read_end != -1)
@@ -530,6 +529,9 @@ buffered_close(buffered *self, PyObject *args)
         Py_CLEAR(res);
     }
 
+    self->read_end = 0;
+    self->pos = 0;
+
 end:
     LEAVE_BUFFERED(self)
     return res;