Message286350
static int
cache_struct_converter(PyObject *arg, PyObject **s_object)
{
if (arg == NULL) {
Py_DECREF();
return 1;
}
*s_object = cache_struct(arg); // actually inline this
if (*s_object == NULL)
return 0;
return Py_CLEANUP_SUPPORTED;
} |
|
Date |
User |
Action |
Args |
2017-01-27 10:40:47 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, vstinner, larry, methane |
2017-01-27 10:40:47 | serhiy.storchaka | set | messageid: <1485513647.11.0.304890002758.issue29300@psf.upfronthosting.co.za> |
2017-01-27 10:40:47 | serhiy.storchaka | link | issue29300 messages |
2017-01-27 10:40:47 | serhiy.storchaka | create | |
|