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

Method encode

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

Source from the content-addressed store, hash-verified

76
77class IncrementalEncoder(codecs.IncrementalEncoder):
78 def encode(self, input, final=False):
79 return uu_encode(input, self.errors)[0]
80
81class IncrementalDecoder(codecs.IncrementalDecoder):
82 def decode(self, input, final=False):

Callers

nothing calls this directly

Calls 1

uu_encodeFunction · 0.85

Tested by

no test coverage detected