Lines Matching refs:input
14 def encode(self, input, errors='strict'):
15 return (str.translate(input, rot13_map), len(input))
17 def decode(self, input, errors='strict'):
18 return (str.translate(input, rot13_map), len(input))
21 def encode(self, input, final=False):
22 return str.translate(input, rot13_map)
25 def decode(self, input, final=False):
26 return str.translate(input, rot13_map)