(values, subtype)
| 115 | return [bytez[i:i+32] for i in range(0, len(bytez), 32)] |
| 116 | |
| 117 | def pack(values, subtype): |
| 118 | return chunkify(b''.join([serialize_value(value, subtype) for value in values])) |
| 119 | |
| 120 | def is_power_of_two(x): |
| 121 | return x > 0 and x & (x-1) == 0 |
no test coverage detected