HomeSort by relevance Sort by last modified time
    Searched refs:py_int_id (Results 1 - 2 of 2) sorted by null

  /external/python/cpython2/Modules/
grpmodule.c 88 PyObject *py_int_id; local
92 py_int_id = PyNumber_Int(pyo_id);
93 if (!py_int_id)
95 if (!_Py_Gid_Converter(py_int_id, &gid)) {
96 Py_DECREF(py_int_id);
99 Py_DECREF(py_int_id);
  /external/python/cpython3/Modules/
grpmodule.c 99 PyObject *py_int_id; local
113 py_int_id = PyNumber_Long(id);
114 if (!py_int_id)
116 if (!_Py_Gid_Converter(py_int_id, &gid)) {
117 Py_DECREF(py_int_id);
120 Py_DECREF(py_int_id);

Completed in 1266 milliseconds