Searched defs:encode_args (Results 1 – 2 of 2) sorted by relevance
461 encode_args = (sys.stdin, sys.stdout) variable463 encode_args = (args[0], sys.stdout) variable465 encode_args = (args[0], args[1]) variable467 encode_args = encode_args + (decode_base64,) variable
62 def encode_args(*args: Union[int, float, bytes, str]) -> bytes: function