Unquote a string.
(name)
| 138 | |
| 139 | @staticmethod |
| 140 | def unescape_name(name): |
| 141 | """ Unquote a string.""" |
| 142 | if name and name[0] == '"' and name[-1] == '"': |
| 143 | name = name[1:-1] |
| 144 | |
| 145 | return name |
| 146 | |
| 147 | @classmethod |
| 148 | def escaped_names(cls, names): |
no outgoing calls
no test coverage detected