Home
last modified time | relevance | path

Searched refs:split_command (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/test/
Dtest_shlex.py343 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)
/third_party/python/Lib/
Dshlex.py318 def join(split_command): argument
320 return ' '.join(quote(arg) for arg in split_command)
/third_party/python/Doc/library/
Dshlex.rst43 .. function:: join(split_command)
45 Concatenate the tokens of the list *split_command* and return a string.