Turn a string in the form =AB to the ASCII character with value 0xab
(s)
| 116 | |
| 117 | |
| 118 | def unquote(s): |
| 119 | """Turn a string in the form =AB to the ASCII character with value 0xab""" |
| 120 | return chr(int(s[1:3], 16)) |
| 121 | |
| 122 | |
| 123 | def quote(c): |
no outgoing calls
no test coverage detected
searching dependent graphs…