Mercurial > p > roundup > code
view tools/base64 @ 3811:ccd55dc53410
Make functionality for matching In-Reply-To and Message-Id work...
...even when the issue id differs from the message id..
Improved test.
| author | Erik Forsberg <forsberg@users.sourceforge.net> |
|---|---|
| date | Sun, 21 Jan 2007 18:08:31 +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()))
