mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Return bools from functions named is_<whatever>().
This commit is contained in:
parent
8fdc75ba5e
commit
b8bff3f4a9
1 changed files with 4 additions and 4 deletions
|
@ -214,9 +214,9 @@ imp_lock_held(PyObject *self, PyObject *args)
|
|||
if (!PyArg_ParseTuple(args, ":lock_held"))
|
||||
return NULL;
|
||||
#ifdef WITH_THREAD
|
||||
return PyInt_FromLong(import_lock_thread != -1);
|
||||
return PyBool_FromLong(import_lock_thread != -1);
|
||||
#else
|
||||
return PyInt_FromLong(0);
|
||||
return PyBool_FromLong(0);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -2295,7 +2295,7 @@ imp_is_builtin(PyObject *self, PyObject *args)
|
|||
char *name;
|
||||
if (!PyArg_ParseTuple(args, "s:is_builtin", &name))
|
||||
return NULL;
|
||||
return PyInt_FromLong(is_builtin(name));
|
||||
return PyBool_FromLong(is_builtin(name));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
@ -2306,7 +2306,7 @@ imp_is_frozen(PyObject *self, PyObject *args)
|
|||
if (!PyArg_ParseTuple(args, "s:is_frozen", &name))
|
||||
return NULL;
|
||||
p = find_frozen(name);
|
||||
return PyInt_FromLong((long) (p == NULL ? 0 : p->size));
|
||||
return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
|
||||
}
|
||||
|
||||
static FILE *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue