Mercurial > p > roundup > code
view tools/base64 @ 3905:6733a7cce7f4
multiline pass through extra keywords args
extra keyword args get turned added to the textarea.
this allows users to do multiline(wrap='hard') per
http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/8436
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Sun, 16 Sep 2007 05:39:11 +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()))
