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

Method encode

Lib/encodings/punycode.py:227–228  ·  view source on GitHub ↗
(self, input, final=False)

Source from the content-addressed store, hash-verified

225
226class IncrementalEncoder(codecs.IncrementalEncoder):
227 def encode(self, input, final=False):
228 return punycode_encode(input)
229
230class IncrementalDecoder(codecs.IncrementalDecoder):
231 def decode(self, input, final=False):

Callers

nothing calls this directly

Calls 1

punycode_encodeFunction · 0.85

Tested by

no test coverage detected