File: python3

package info (click to toggle)
brotli 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,188 kB
  • sloc: ansic: 36,232; python: 817; sh: 97; makefile: 62; cpp: 14
file content (8 lines) | stat: -rwxr-xr-x 189 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/sh -eu

for python3 in $(py3versions -s 2>/dev/null); do
    ${python3} -c 'import brotli as b; assert b.decompress(b.compress(b"x")) == b"x"'
    echo "${python3}: OK"
done

exit 0