Home
last modified time | relevance | path

Searched refs:do_argstrip (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Objects/
Dbytesobject.c1946 do_argstrip(PyBytesObject *self, int striptype, PyObject *bytes) in do_argstrip() function
1969 return do_argstrip(self, BOTHSTRIP, bytes); in bytes_strip_impl()
1987 return do_argstrip(self, LEFTSTRIP, bytes); in bytes_lstrip_impl()
2005 return do_argstrip(self, RIGHTSTRIP, bytes); in bytes_rstrip_impl()
Dunicodeobject.c12978 do_argstrip(PyObject *self, int striptype, PyObject *sep) in do_argstrip() function
13010 return do_argstrip(self, BOTHSTRIP, chars); in unicode_strip_impl()
13029 return do_argstrip(self, LEFTSTRIP, chars); in unicode_lstrip_impl()
13048 return do_argstrip(self, RIGHTSTRIP, chars); in unicode_rstrip_impl()