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

Function split_bytes

Tools/unicode/genmap_tchinese.py:30–32  ·  view source on GitHub ↗

Split 0xABCD into 0xAB, 0xCD

(code)

Source from the content-addressed store, hash-verified

28
29
30def split_bytes(code):
31 """Split 0xABCD into 0xAB, 0xCD"""
32 return code >> 8, code & 0xff
33
34
35def parse_hkscs_map(fo):

Callers 1

make_hkscs_mapFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…