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

Method decode

Lib/encodings/uu_codec.py:82–83  ·  view source on GitHub ↗
(self, input, final=False)

Source from the content-addressed store, hash-verified

80
81class IncrementalDecoder(codecs.IncrementalDecoder):
82 def decode(self, input, final=False):
83 return uu_decode(input, self.errors)[0]
84
85class StreamWriter(Codec, codecs.StreamWriter):
86 charbuffertype = bytes

Callers

nothing calls this directly

Calls 1

uu_decodeFunction · 0.85

Tested by

no test coverage detected