MCPcopy Index your code
hub / github.com/RustPython/RustPython / process

Method process

Lib/imaplib.py:1725–1729  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

1723 self.mech = mechinst # Callable object to provide/process data
1724
1725 def process(self, data):
1726 ret = self.mech(self.decode(data))
1727 if ret is None:
1728 return b'*' # Abort conversation
1729 return self.encode(ret)
1730
1731 def encode(self, inp):
1732 #

Callers

nothing calls this directly

Calls 2

decodeMethod · 0.95
encodeMethod · 0.95

Tested by

no test coverage detected