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