Mercurial > p > roundup > code
view tools/base64 @ 5536:ef46e188bb5b maint-1.6
Change count of number of ways to run roundup to "multiple".
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 03 Aug 2018 19:29:00 -0400 |
| parents | 740102dfad1d |
| children | c75defc1c2f0 |
line wrap: on
line source
#!/usr/bin/env python import zlib, base64, sys print base64.encodestring(zlib.compress(sys.stdin.read()))
