2015-04-04 04:53:51 +08:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
PyDoc_STRVAR(_weakref_getweakrefcount__doc__,
|
|
|
|
"getweakrefcount($module, object, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return the number of weak references to \'object\'.");
|
|
|
|
|
|
|
|
#define _WEAKREF_GETWEAKREFCOUNT_METHODDEF \
|
|
|
|
{"getweakrefcount", (PyCFunction)_weakref_getweakrefcount, METH_O, _weakref_getweakrefcount__doc__},
|
|
|
|
|
|
|
|
static Py_ssize_t
|
2016-07-07 22:35:15 +08:00
|
|
|
_weakref_getweakrefcount_impl(PyObject *module, PyObject *object);
|
2015-04-04 04:53:51 +08:00
|
|
|
|
|
|
|
static PyObject *
|
2016-07-07 22:35:15 +08:00
|
|
|
_weakref_getweakrefcount(PyObject *module, PyObject *object)
|
2015-04-04 04:53:51 +08:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
Py_ssize_t _return_value;
|
|
|
|
|
|
|
|
_return_value = _weakref_getweakrefcount_impl(module, object);
|
2016-06-09 21:16:06 +08:00
|
|
|
if ((_return_value == -1) && PyErr_Occurred()) {
|
2015-04-04 04:53:51 +08:00
|
|
|
goto exit;
|
2016-06-09 21:16:06 +08:00
|
|
|
}
|
2015-04-04 04:53:51 +08:00
|
|
|
return_value = PyLong_FromSsize_t(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2016-12-27 21:19:20 +08:00
|
|
|
|
|
|
|
PyDoc_STRVAR(_weakref__remove_dead_weakref__doc__,
|
|
|
|
"_remove_dead_weakref($module, dct, key, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Atomically remove key from dict if it points to a dead weakref.");
|
|
|
|
|
|
|
|
#define _WEAKREF__REMOVE_DEAD_WEAKREF_METHODDEF \
|
2018-11-27 17:27:36 +08:00
|
|
|
{"_remove_dead_weakref", (PyCFunction)(void(*)(void))_weakref__remove_dead_weakref, METH_FASTCALL, _weakref__remove_dead_weakref__doc__},
|
2016-12-27 21:19:20 +08:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_weakref__remove_dead_weakref_impl(PyObject *module, PyObject *dct,
|
|
|
|
PyObject *key);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 19:11:11 +08:00
|
|
|
_weakref__remove_dead_weakref(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
2016-12-27 21:19:20 +08:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *dct;
|
|
|
|
PyObject *key;
|
|
|
|
|
2019-01-11 22:01:14 +08:00
|
|
|
if (!_PyArg_CheckPositional("_remove_dead_weakref", nargs, 2, 2)) {
|
2017-01-17 08:35:17 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
2019-01-11 22:01:14 +08:00
|
|
|
if (!PyDict_Check(args[0])) {
|
2019-08-29 22:49:08 +08:00
|
|
|
_PyArg_BadArgument("_remove_dead_weakref", "argument 1", "dict", args[0]);
|
2019-01-11 22:01:14 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
dct = args[0];
|
|
|
|
key = args[1];
|
2016-12-27 21:19:20 +08:00
|
|
|
return_value = _weakref__remove_dead_weakref_impl(module, dct, key);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2019-08-29 22:49:08 +08:00
|
|
|
/*[clinic end generated code: output=c543dc2cd6ece975 input=a9049054013a1b77]*/
|