Home
last modified time | relevance | path

Searched refs:BOTHSTRIP (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/
Dstropmodule.c26 #define BOTHSTRIP 2 macro
424 return do_strip(args, BOTHSTRIP); in strop_strip()
/external/python/cpython3/Objects/
Dbytesobject.c1756 #define BOTHSTRIP 2 macro
2033 return do_argstrip(self, BOTHSTRIP, bytes); in bytes_strip_impl()
Dunicodeobject.c12270 #define BOTHSTRIP 2 macro
12464 return do_argstrip(self, BOTHSTRIP, chars); in unicode_strip_impl()
/external/python/cpython2/Objects/
Dbytesobject.c1763 #define BOTHSTRIP 2 macro
2040 return do_argstrip(self, BOTHSTRIP, bytes); in bytes_strip_impl()
Dstringobject.c1442 #define BOTHSTRIP 2 macro
1939 return do_strip(self, BOTHSTRIP); /* Common case */ in string_strip()
1941 return do_argstrip(self, BOTHSTRIP, args); in string_strip()
Dunicodeobject.c7053 #define BOTHSTRIP 2 macro
7170 return do_strip(self, BOTHSTRIP); /* Common case */ in unicode_strip()
7172 return do_argstrip(self, BOTHSTRIP, args); in unicode_strip()