summaryrefslogtreecommitdiff
path: root/Modules/zipimport.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-02-19 09:38:58 +0000
committerGeorg Brandl <georg@python.org>2006-02-19 09:38:58 +0000
commit20812a0808ebd190718215d91740341dea4988a2 (patch)
treeb908bc111546cea877eb8ff4e39a368f7c68cd37 /Modules/zipimport.c
parentbf395f135b9a4bc2abb6db6822e0f76b1ca07df4 (diff)
downloadcpython-20812a0808ebd190718215d91740341dea4988a2.tar.gz
Patch #1352711: make zipimport raise a complete IOError
Diffstat (limited to 'Modules/zipimport.c')
-rw-r--r--Modules/zipimport.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/zipimport.c b/Modules/zipimport.c
index 373255d5b8..fa4380c088 100644
--- a/Modules/zipimport.c
+++ b/Modules/zipimport.c
@@ -434,8 +434,7 @@ zipimporter_get_data(PyObject *obj, PyObject *args)
toc_entry = PyDict_GetItemString(self->files, path);
if (toc_entry == NULL) {
- PyErr_Format(PyExc_IOError, "file not found [%.200s]",
- path);
+ PyErr_SetFromErrnoWithFilename(PyExc_IOError, path);
return NULL;
}
return get_data(PyString_AsString(self->archive), toc_entry);