summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/Utils.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py
index 8b0efc586..f25dff557 100644
--- a/Mailman/Utils.py
+++ b/Mailman/Utils.py
@@ -678,23 +678,3 @@ except ImportError:
for i in range(0, len(s), 2):
append(chr(int16(s[i:i+2], 16)))
return string.join(acc, '')
-
-
-
-def write(*args, **kws):
- file = sys.stdout
- sep = ' '
- end = '\n'
- if kws.has_key('file'):
- file = kws['file']
- del kws['file']
- if kws.has_key('nl'):
- if not kws['nl']:
- end = ' '
- del kws['nl']
- if kws.has_key('sep'):
- sep = kws['sep']
- del kws['sep']
- if kws:
- raise TypeError('unexpected keywords')
- file.write(string.join(map(str, args), sep) + end)