Lines Matching full:decode
15 'encode', 'decode', 'encodestring', 'decodestring',
61 """Decode a Base64 encoded string.
63 s is the string to decode. Optional altchars must be a string of at least
88 """Decode a string encoded with the standard Base64 alphabet.
90 s is the string to decode. The decoded string is returned. A TypeError
105 """Decode a string encoded with the standard Base64 alphabet.
107 s is the string to decode. The decoded string is returned. A TypeError
180 """Decode a Base32 encoded string.
182 s is the string to decode. Optional casefold is a flag specifying whether
217 # Now decode the full quanta
263 """Decode a Base16 encoded string.
265 s is the string to decode. Optional casefold is a flag specifying whether
304 def decode(input, output):
305 """Decode a file."""
324 """Decode a string."""
340 -d, -u: decode
342 -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0]
347 if o == '-d': func = decode
348 if o == '-u': func = decode