summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-16 20:46:27 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-16 20:46:27 (GMT)
commit307fa8cc8285d7f39550051e0ce7c8ac5504d13f (patch)
treecbcd60a6d4013867071f442c25581cfe21115575 /Python/errors.c
parent27ae52362c4c8576987f6a78586b4f9c145100b1 (diff)
downloadcpython-307fa8cc8285d7f39550051e0ce7c8ac5504d13f.zip
cpython-307fa8cc8285d7f39550051e0ce7c8ac5504d13f.tar.gz
cpython-307fa8cc8285d7f39550051e0ce7c8ac5504d13f.tar.bz2
Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.
Diffstat (limited to 'Python/errors.c')
-rw-r--r--Python/errors.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/errors.c b/Python/errors.c
index 2a84c8d..3770522 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -333,9 +333,9 @@ PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject)
#endif /* Unix/Windows */
#endif /* PLAN 9*/
if (filenameObject != NULL)
- v = Py_BuildValue("(isO)", i, s, filenameObject);
+ v = Py_BuildValue("(iUO)", i, s, filenameObject);
else
- v = Py_BuildValue("(is)", i, s);
+ v = Py_BuildValue("(iU)", i, s);
if (v != NULL) {
PyErr_SetObject(exc, v);
Py_DECREF(v);
@@ -413,9 +413,9 @@ PyObject *PyErr_SetExcFromWindowsErrWithFilenameObject(
s[--len] = '\0';
}
if (filenameObject != NULL)
- v = Py_BuildValue("(isO)", err, s, filenameObject);
+ v = Py_BuildValue("(iUO)", err, s, filenameObject);
else
- v = Py_BuildValue("(is)", err, s);
+ v = Py_BuildValue("(iU)", err, s);
if (v != NULL) {
PyErr_SetObject(exc, v);
Py_DECREF(v);