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

Method decode

Lib/encodings/uu_codec.py:74–75  ·  view source on GitHub ↗
(self, input, errors='strict')

Source from the content-addressed store, hash-verified

72 return uu_encode(input, errors)
73
74 def decode(self, input, errors='strict'):
75 return uu_decode(input, errors)
76
77class IncrementalEncoder(codecs.IncrementalEncoder):
78 def encode(self, input, final=False):

Callers

nothing calls this directly

Calls 1

uu_decodeFunction · 0.85

Tested by

no test coverage detected