MCPcopy Index your code
hub / github.com/python/cpython / write32u

Function write32u

Lib/gzip.py:78–81  ·  view source on GitHub ↗
(output, value)

Source from the content-addressed store, hash-verified

76 return binary_file
77
78def write32u(output, value):
79 # The L format writes the bit pattern correctly whether signed
80 # or unsigned.
81 output.write(struct.pack("<L", value))
82
83class _PaddedFile:
84 """Minimal read-only file object that prepends a string to the contents

Callers 2

_write_gzip_headerMethod · 0.85
closeMethod · 0.85

Calls 2

writeMethod · 0.45
packMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…