(self, inp)
| 1435 | return oup |
| 1436 | |
| 1437 | def decode(self, inp): |
| 1438 | if not inp: |
| 1439 | return b'' |
| 1440 | return binascii.a2b_base64(inp) |
| 1441 | |
| 1442 | Months = ' Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' ') |
| 1443 | Mon2num = {s.encode():n+1 for n, s in enumerate(Months[1:])} |
no outgoing calls
no test coverage detected