(self, inp)
| 1753 | return oup |
| 1754 | |
| 1755 | def decode(self, inp): |
| 1756 | if not inp: |
| 1757 | return b'' |
| 1758 | return binascii.a2b_base64(inp) |
| 1759 | |
| 1760 | Months = ' Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' ') |
| 1761 | Mon2num = {s.encode():n+1 for n, s in enumerate(Months[1:])} |
no outgoing calls
no test coverage detected