watcher_id = PyCode_AddWatcher(error_code_event_handler);
}
else {
- PyErr_Format(PyExc_ValueError, "invalid watcher %d", which_l);
+ PyErr_Format(PyExc_ValueError, "invalid watcher %ld", which_l);
return NULL;
}
if (watcher_id < 0) {
assert(PyLong_Check(which_watcher));
long which_l = PyLong_AsLong(which_watcher);
if (which_l < 0 || which_l >= (long)Py_ARRAY_LENGTH(callbacks)) {
- PyErr_Format(PyExc_ValueError, "invalid watcher %d", which_l);
+ PyErr_Format(PyExc_ValueError, "invalid watcher %ld", which_l);
return NULL;
}
int watcher_id = PyContext_AddWatcher(callbacks[which_l]);
do { \
if (EXPECTED != sizeof(TYPE)) { \
PyErr_Format(get_testerror(self), \
- "sizeof(%s) = %u instead of %u", \
- #TYPE, sizeof(TYPE), EXPECTED); \
+ "sizeof(%s) = %zu instead of %u", \
+ #TYPE, sizeof(TYPE), (unsigned)(EXPECTED)); \
return (PyObject*)NULL; \
} \
} while (0)
uint16_t u16 = _Py_bswap16(UINT16_C(0x3412));
if (u16 != UINT16_C(0x1234)) {
PyErr_Format(PyExc_AssertionError,
- "_Py_bswap16(0x3412) returns %u", u16);
+ "_Py_bswap16(0x3412) returns %d", u16);
return NULL;
}
uint32_t u32 = _Py_bswap32(UINT32_C(0x78563412));
if (u32 != UINT32_C(0x12345678)) {
PyErr_Format(PyExc_AssertionError,
- "_Py_bswap32(0x78563412) returns %lu", u32);
+ "_Py_bswap32(0x78563412) returns %u", u32);
return NULL;
}
static int
check_bytes_find(const char *haystack0, const char *needle0,
- int offset, Py_ssize_t expected)
+ Py_ssize_t offset, Py_ssize_t expected)
{
Py_ssize_t len_haystack = strlen(haystack0);
Py_ssize_t len_needle = strlen(needle0);
}
else {
PyErr_Format(PyExc_NotImplementedError,
- "%zd", interpid);
+ "%d", interpid);
return NULL;
}
assert(interp != NULL);