Lines Matching refs:split
150 for subkey in key.split('.'):
193 be split. I.e. Splitting 'a, b\,c, d' will yield ['a', 'b,c', 'd'].
194 If split_spaces is set to False spaces will not be split. I.e.
201 # Split on commas which are not preceded by a slash.
203 split = re.split(r'(?<!\\),', input)
205 split = re.split(r'(?<!\\),|\s', input)
210 item in split if item.strip())
221 # Don't split on space here because the add-on
310 errmsg = str(full_error).split('Traceback')[0].rstrip('\n')
311 parts = errmsg.split(':')
316 return [item.strip() for item in parts[2].split(',') if item.strip()]
333 errmsg = str(full_error).split('Traceback')[0].rstrip('\n')