MCPcopy Create free account
hub / github.com/ZeroIntensity/pointers.py / decode

Method decode

src/pointers/api_bindings.py:479–487  ·  view source on GitHub ↗
(
        object: PyObjectLike, encoding: StringLike, errors: StringLike
    )

Source from the content-addressed store, hash-verified

477 # PyCodec_Decode
478 @staticmethod
479 def decode(
480 object: PyObjectLike, encoding: StringLike, errors: StringLike
481 ) -> PyObjectLike:
482 return api_binding_base(
483 API_FUNCS["PyCodec_Decode"],
484 _deref_maybe(object),
485 make_string(encoding),
486 make_string(errors),
487 )
488
489 # PyCodec_Decoder
490 @staticmethod

Callers 3

_decode_typeFunction · 0.45
make_charFunction · 0.45
attempt_decodeFunction · 0.45

Calls 3

api_binding_baseFunction · 0.85
_deref_maybeFunction · 0.85
make_stringFunction · 0.85

Tested by

no test coverage detected