Lines Matching refs:self
6 "expandtabs($self, /, tabsize=8)\n"
17 stringlib_expandtabs_impl(PyObject *self, int tabsize);
20 stringlib_expandtabs(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
41 return_value = stringlib_expandtabs_impl(self, tabsize);
48 "ljust($self, width, fillchar=b\' \', /)\n"
59 stringlib_ljust_impl(PyObject *self, Py_ssize_t width, char fillchar);
62 stringlib_ljust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
97 return_value = stringlib_ljust_impl(self, width, fillchar);
104 "rjust($self, width, fillchar=b\' \', /)\n"
115 stringlib_rjust_impl(PyObject *self, Py_ssize_t width, char fillchar);
118 stringlib_rjust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
153 return_value = stringlib_rjust_impl(self, width, fillchar);
160 "center($self, width, fillchar=b\' \', /)\n"
171 stringlib_center_impl(PyObject *self, Py_ssize_t width, char fillchar);
174 stringlib_center(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
209 return_value = stringlib_center_impl(self, width, fillchar);
216 "zfill($self, width, /)\n"
227 stringlib_zfill_impl(PyObject *self, Py_ssize_t width);
230 stringlib_zfill(PyObject *self, PyObject *arg)
247 return_value = stringlib_zfill_impl(self, width);