Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dstringobject.c1885 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()
Dunicodeobject.c7132 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()