Mercurial > p > roundup > code
view tools/base64 @ 4315:cfb01b2bc730
Fix documentation on user required to run the tests, fixes issue2550618.
thanks to Chris aka 'radioking'
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Mon, 04 Jan 2010 10:17:00 +0000 |
| 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()))
