Return a shell-escaped string from *split_command*.
(split_command)
| 316 | |
| 317 | |
| 318 | def join(split_command): |
| 319 | """Return a shell-escaped string from *split_command*.""" |
| 320 | return ' '.join(quote(arg) for arg in split_command) |
| 321 | |
| 322 | |
| 323 | _find_unsafe = re.compile(r'[^\w@%+=:,./-]', re.ASCII).search |
no test coverage detected