(s)
| 68 | |
| 69 | |
| 70 | def hexstr(s): |
| 71 | assert isinstance(s, bytes), repr(s) |
| 72 | h = "0123456789abcdef" |
| 73 | r = '' |
| 74 | for i in s: |
| 75 | r += h[(i >> 4) & 0xF] + h[i & 0xF] |
| 76 | return r |
| 77 | |
| 78 | |
| 79 | URL = "http://www.pythontest.net/hashlib/{}.txt" |
no outgoing calls
no test coverage detected
searching dependent graphs…