Lines Matching defs:chars
585 "strip($self, chars=None, /)\n"
590 "If chars is given and not None, remove characters in chars instead.");
596 unicode_strip_impl(PyObject *self, PyObject *chars);
602 PyObject *chars = Py_None;
610 chars = args[0];
612 return_value = unicode_strip_impl(self, chars);
619 "lstrip($self, chars=None, /)\n"
624 "If chars is given and not None, remove characters in chars instead.");
630 unicode_lstrip_impl(PyObject *self, PyObject *chars);
636 PyObject *chars = Py_None;
644 chars = args[0];
646 return_value = unicode_lstrip_impl(self, chars);
653 "rstrip($self, chars=None, /)\n"
658 "If chars is given and not None, remove characters in chars instead.");
664 unicode_rstrip_impl(PyObject *self, PyObject *chars);
670 PyObject *chars = Py_None;
678 chars = args[0];
680 return_value = unicode_rstrip_impl(self, chars);