1 parent 7eb81ac commit c984081Copy full SHA for c984081
1 file changed
ptrlib/binary/packing/pack.py
@@ -94,6 +94,7 @@ def p64(data: Union[List[PtrlibIntLikeT], List[float], PtrlibIntLikeT, float],
94
Returns:
95
bytes: A qword of bytes.
96
"""
97
+ # TODO: Allow generator
98
if isinstance(data, list):
99
return flat(data, lambda v: p64(v, byteorder))
100
0 commit comments