summaryrefslogtreecommitdiff
path: root/tools.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools.py')
-rw-r--r--tools.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/tools.py b/tools.py
deleted file mode 100644
index 69d8bdb..0000000
--- a/tools.py
+++ /dev/null
@@ -1,26 +0,0 @@
-import sys
-import os
-
-progname = os.path.basename(sys.argv[0])
-
-def quote(s, ch = '"'):
- return s if " " not in s else ch + s + ch
-
-def printf(fmt, *args):
- out = fmt % args
- sys.stdout.write(out)
-
- if out[-1] != '\n':
- sys.stdout.flush()
-
-def printerr(fmt, *args):
- msg = fmt % args
- if msg[-1] != "\n":
- msg += "\n"
- sys.stderr.write("** " + progname + ": " + msg)
-
-def debug(fmt, *args):
- msg = fmt % args
- if msg[-1] != "\n":
- msg += "\n"
- sys.stderr.write("-- " + msg)