MCPcopy Create free account
hub / github.com/bitsandbytes-foundation/bitsandbytes / _decode

Function _decode

bitsandbytes/utils.py:105–106  ·  view source on GitHub ↗
(subprocess_err_out_tuple)

Source from the content-addressed store, hash-verified

103
104def execute_and_return(command_string: str) -> tuple[str, str]:
105 def _decode(subprocess_err_out_tuple):
106 return tuple(to_decode.decode("UTF-8").strip() for to_decode in subprocess_err_out_tuple)
107
108 def execute_and_return_decoded_std_streams(command_string):
109 return _decode(

Calls

no outgoing calls

Tested by

no test coverage detected