summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing/connection.h
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-10 22:24:24 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-10 22:24:24 (GMT)
commit245c70b12c7d03f0c32b1a80781d366db15ebea3 (patch)
treeae7f734707c31969ae1af894e190977859ef93c5 /Modules/_multiprocessing/connection.h
parent9aa4299882500ca3206514bced135c0a1083355d (diff)
downloadcpython-245c70b12c7d03f0c32b1a80781d366db15ebea3.zip
cpython-245c70b12c7d03f0c32b1a80781d366db15ebea3.tar.gz
cpython-245c70b12c7d03f0c32b1a80781d366db15ebea3.tar.bz2
Merged revisions 66377 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66377 | amaury.forgeotdarc | 2008-09-11 00:04:45 +0200 (jeu., 11 sept. 2008) | 8 lines #3743: PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not for PyString_FromFormat which has an independent implementation, and uses "%zd". This makes a difference on win64, where printf needs "%Id" to display 64bit values. For example, queue.__repr__ was incorrect. Reviewed by Martin von Loewis. ........
Diffstat (limited to 'Modules/_multiprocessing/connection.h')
-rw-r--r--Modules/_multiprocessing/connection.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_multiprocessing/connection.h b/Modules/_multiprocessing/connection.h
index e422d69..6e82345 100644
--- a/Modules/_multiprocessing/connection.h
+++ b/Modules/_multiprocessing/connection.h
@@ -47,8 +47,8 @@ connection_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
return NULL;
if (handle == INVALID_HANDLE_VALUE || (Py_ssize_t)handle < 0) {
- PyErr_Format(PyExc_IOError, "invalid handle %"
- PY_FORMAT_SIZE_T "d", (Py_ssize_t)handle);
+ PyErr_Format(PyExc_IOError, "invalid handle %zd",
+ (Py_ssize_t)handle);
return NULL;
}
@@ -404,7 +404,7 @@ connection_repr(ConnectionObject *self)
static char *conn_type[] = {"read-only", "write-only", "read-write"};
assert(self->flags >= 1 && self->flags <= 3);
- return FROM_FORMAT("<%s %s, handle %" PY_FORMAT_SIZE_T "d>",
+ return FROM_FORMAT("<%s %s, handle %zd>",
conn_type[self->flags - 1],
CONNECTION_NAME, (Py_ssize_t)self->handle);
}