De-hexify a str or a byte object
(x)
| 163 | |
| 164 | |
| 165 | def hex_bytes(x): |
| 166 | # type: (AnyStr) -> bytes |
| 167 | """De-hexify a str or a byte object""" |
| 168 | return binascii.a2b_hex(bytes_encode(x)) |
| 169 | |
| 170 | |
| 171 | def int_bytes(x, size): |
no test coverage detected
searching dependent graphs…