(s)
| 603 | |
| 604 | @staticmethod |
| 605 | def _shell_unquote(s): |
| 606 | s = str(s) |
| 607 | if len(s) >= 2 and s[0] == s[-1] and s[0] in ("\"", "'"): |
| 608 | return s[1:-1] |
| 609 | return s |
| 610 | |
| 611 | @classmethod |
| 612 | def _split_shell_arg_string(cls, s): |
no outgoing calls
no test coverage detected