Lines Matching refs:self
648 complex_conjugate_impl(PyComplexObject *self)
651 Py_complex c = self->cval;
662 complex___getnewargs___impl(PyComplexObject *self)
665 Py_complex c = self->cval;
680 complex___format___impl(PyComplexObject *self, PyObject *format_spec)
688 (PyObject *)self,
704 complex___complex___impl(PyComplexObject *self)
707 if (PyComplex_CheckExact(self)) {
708 Py_INCREF(self);
709 return (PyObject *)self;
712 return PyComplex_FromCComplex(self->cval);