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