Searched refs:do_argstrip (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | stringobject.c | 1885 do_argstrip(PyStringObject *self, int striptype, PyObject *args) in do_argstrip() function 1935 return do_argstrip(self, BOTHSTRIP, args); in string_strip() 1952 return do_argstrip(self, LEFTSTRIP, args); in string_lstrip() 1969 return do_argstrip(self, RIGHTSTRIP, args); in string_rstrip()
|
D | unicodeobject.c | 7132 do_argstrip(PyUnicodeObject *self, int striptype, PyObject *args) in do_argstrip() function 7177 return do_argstrip(self, BOTHSTRIP, args); in unicode_strip() 7194 return do_argstrip(self, LEFTSTRIP, args); in unicode_lstrip() 7211 return do_argstrip(self, RIGHTSTRIP, args); in unicode_rstrip()
|