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

Method encode

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

Source from the content-addressed store, hash-verified

69
70class Codec(codecs.Codec):
71 def encode(self, input, errors='strict'):
72 return uu_encode(input, errors)
73
74 def decode(self, input, errors='strict'):
75 return uu_decode(input, errors)

Callers 1

uu_encodeFunction · 0.45

Calls 1

uu_encodeFunction · 0.85

Tested by

no test coverage detected