Searched refs:split_command (Results 1 – 3 of 3) sorted by relevance
343 for split_command, command in [350 joined = shlex.join(split_command)355 for command, *split_command in all_data:357 joined = shlex.join(split_command)359 self.assertEqual(split_command, resplit)
318 def join(split_command): argument320 return ' '.join(quote(arg) for arg in split_command)
43 .. function:: join(split_command)45 Concatenate the tokens of the list *split_command* and return a string.