Lines Matching refs:strip
1142 @bench('"Hello!\\n".strip()', 'strip terminal newline', 1000)
1145 s_strip = s.strip
1149 @bench('"Hello!\\n".rstrip()', 'strip terminal newline', 1000)
1156 @bench('"\\nHello!".strip()', 'strip terminal newline', 1000)
1159 s_strip = s.strip
1163 @bench('"\\nHello!\\n".strip()', 'strip terminal newline', 1000)
1166 s_strip = s.strip
1170 @bench('"\\nHello!".rstrip()', 'strip terminal newline', 1000)
1178 'strip terminal newline', 1000)
1188 @bench('"Hello\\t \\t".strip()', 'strip terminal spaces and tabs', 1000)
1191 s_strip = s.strip
1195 @bench('"Hello\\t \\t".rstrip()', 'strip terminal spaces and tabs', 1000)
1202 @bench('"\\t \\tHello".rstrip()', 'strip terminal spaces and tabs', 1000)