Mercurial > p > roundup > code
view tools/base64 @ 4840:19f2c01d2b9d
fix the CHANGES file so it references the original bug report that is now fixed
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 08 Oct 2013 09:46:42 -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()))
