Lines Matching refs:fillchar
84 "center($self, width, fillchar=\' \', /)\n"
95 unicode_center_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
102 Py_UCS4 fillchar = ' ';
122 if (!convert_uc(args[1], &fillchar)) {
126 return_value = unicode_center_impl(self, width, fillchar);
518 "ljust($self, width, fillchar=\' \', /)\n"
529 unicode_ljust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
536 Py_UCS4 fillchar = ' ';
556 if (!convert_uc(args[1], &fillchar)) {
560 return_value = unicode_ljust_impl(self, width, fillchar);
827 "rjust($self, width, fillchar=\' \', /)\n"
838 unicode_rjust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
845 Py_UCS4 fillchar = ' ';
865 if (!convert_uc(args[1], &fillchar)) {
869 return_value = unicode_rjust_impl(self, width, fillchar);