summaryrefslogtreecommitdiff
path: root/benchmarks/__main__.py
blob: 5c33a2a57f48c393fddf24768731393e7e1c7cf7 (plain)
1
2
3
4
5
6
7
# this file is required to support `python -m benchmarks` syntax
import sys
import benchmarks
try:
    benchmarks.main()
except KeyboardInterrupt:
    sys.exit(1)