Searched refs:meth_noargs (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_call.py | 252 self.assertEqual(self.obj.meth_noargs(), self.expected_self) 255 self.assertEqual(self.obj.meth_noargs(*[]), self.expected_self) 260 TypeError, msg, lambda: self.obj.meth_noargs(1), 266 TypeError, msg, lambda: self.obj.meth_noargs(1, 2), 272 TypeError, msg, lambda: self.obj.meth_noargs(*(1, 2, 3)), 278 TypeError, msg, lambda: self.obj.meth_noargs(k=1), 431 (obj.meth_noargs, (), expected_self),
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 5243 meth_noargs(PyObject* self, PyObject* ignored) in meth_noargs() function 5553 {"meth_noargs", meth_noargs, METH_NOARGS}, 6629 {"meth_noargs", meth_noargs, METH_NOARGS}, 6651 {"meth_noargs", meth_noargs, METH_NOARGS|METH_CLASS}, 6673 {"meth_noargs", meth_noargs, METH_NOARGS|METH_STATIC},
|