Mercurial > p > roundup > code
view tools/base64 @ 7942:52f5cb357e40
test: re-enable psycopg2 build win ci with python 3.13 beta 1
New beta1 version now in GH actions ci. See if psycopg2 installs with
it.
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 12 May 2024 17:52:36 -0400 |
| parents | c75defc1c2f0 |
| children | 9c3ec0a5c7fc |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import zlib, base64, sys print(base64.encodestring(zlib.compress(sys.stdin.read())))
