mirror of
https://github.com/python/cpython.git
synced 2025-09-15 05:06:12 +00:00
Patch #1352711: make zipimport raise a complete IOError
This commit is contained in:
parent
2a8ec996ce
commit
e9b1949f70
1 changed files with 1 additions and 2 deletions
|
@ -434,8 +434,7 @@ zipimporter_get_data(PyObject *obj, PyObject *args)
|
||||||
|
|
||||||
toc_entry = PyDict_GetItemString(self->files, path);
|
toc_entry = PyDict_GetItemString(self->files, path);
|
||||||
if (toc_entry == NULL) {
|
if (toc_entry == NULL) {
|
||||||
PyErr_Format(PyExc_IOError, "file not found [%.200s]",
|
PyErr_SetFromErrnoWithFilename(PyExc_IOError, path);
|
||||||
path);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
return get_data(PyString_AsString(self->archive), toc_entry);
|
return get_data(PyString_AsString(self->archive), toc_entry);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue