Mercurial > p > roundup > code
view tools/base64 @ 4950:16cb37d93ec6
Put back accidentally removed line from setup.py header
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Sat, 13 Dec 2014 14:50:24 +0300 |
| 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()))
