OILS / opy / util.py View on Github | oilshell.org

13 lines, 6 significant
1#!/usr/bin/env python2
2"""
3util.py
4"""
5from __future__ import print_function
6
7import sys
8
9
10def log(msg, *args):
11 if args:
12 msg = msg % args
13 print(msg, file=sys.stderr)