Lines Matching defs:self
6 "is_integer($self, /)\n"
15 float_is_integer_impl(PyObject *self);
18 float_is_integer(PyObject *self, PyObject *Py_UNUSED(ignored))
20 return float_is_integer_impl(self);
24 "__trunc__($self, /)\n"
33 float___trunc___impl(PyObject *self);
36 float___trunc__(PyObject *self, PyObject *Py_UNUSED(ignored))
38 return float___trunc___impl(self);
42 "__floor__($self, /)\n"
51 float___floor___impl(PyObject *self);
54 float___floor__(PyObject *self, PyObject *Py_UNUSED(ignored))
56 return float___floor___impl(self);
60 "__ceil__($self, /)\n"
69 float___ceil___impl(PyObject *self);
72 float___ceil__(PyObject *self, PyObject *Py_UNUSED(ignored))
74 return float___ceil___impl(self);
78 "__round__($self, ndigits=None, /)\n"
89 float___round___impl(PyObject *self, PyObject *o_ndigits);
92 float___round__(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
105 return_value = float___round___impl(self, o_ndigits);
112 "conjugate($self, /)\n"
115 "Return self, the complex conjugate of any float.");
121 float_conjugate_impl(PyObject *self);
124 float_conjugate(PyObject *self, PyObject *Py_UNUSED(ignored))
126 return float_conjugate_impl(self);
130 "hex($self, /)\n"
144 float_hex_impl(PyObject *self);
147 float_hex(PyObject *self, PyObject *Py_UNUSED(ignored))
149 return float_hex_impl(self);
167 "as_integer_ratio($self, /)\n"
188 float_as_integer_ratio_impl(PyObject *self);
191 float_as_integer_ratio(PyObject *self, PyObject *Py_UNUSED(ignored))
193 return float_as_integer_ratio_impl(self);
231 "__getnewargs__($self, /)\n"
239 float___getnewargs___impl(PyObject *self);
242 float___getnewargs__(PyObject *self, PyObject *Py_UNUSED(ignored))
244 return float___getnewargs___impl(self);
294 "__format__($self, format_spec, /)\n"
303 float___format___impl(PyObject *self, PyObject *format_spec);
306 float___format__(PyObject *self, PyObject *arg)
319 return_value = float___format___impl(self, format_spec);