Patch #1352711: make zipimport raise a complete IOError

This commit is contained in:
Georg Brandl 2006-02-19 09:38:58 +00:00
parent 2a8ec996ce
commit e9b1949f70

View file

@ -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);