(string)
| 18 | |
| 19 | |
| 20 | def unwrap_quotes(string): |
| 21 | if string.startswith('"') and string.endswith('"'): |
| 22 | return unwrap_quotes(string[1:-1]) |
| 23 | elif string.startswith("'") and string.endswith("'"): |
| 24 | return unwrap_quotes(string[1:-1]) |
| 25 | |
| 26 | return string |
| 27 | |
| 28 | |
| 29 | def strip(value): |