mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
SF Patch #494863, file.xreadlines() should raise ValueError if file is closed
This makes xreadlines behave like all other file methods (other than close() which just returns).
This commit is contained in:
parent
a6e975801e
commit
649b75954a
2 changed files with 6 additions and 0 deletions
|
@ -1025,6 +1025,8 @@ file_xreadlines(PyFileObject *f)
|
|||
{
|
||||
static PyObject* xreadlines_function = NULL;
|
||||
|
||||
if (f->f_fp == NULL)
|
||||
return err_closed();
|
||||
if (!xreadlines_function) {
|
||||
PyObject *xreadlines_module =
|
||||
PyImport_ImportModule("xreadlines");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue