summaryrefslogtreecommitdiff
path: root/Lib/formatter.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-29 00:02:30 +0000
committerGuido van Rossum <guido@python.org>1996-05-29 00:02:30 +0000
commitc22d69be5f6ac7f8d844c396f4c93c15f875608c (patch)
tree6b1a0849091090eb9772d6980b206200769c8035 /Lib/formatter.py
parentf39882d84b8d414952217d92ce8c385fe5f39808 (diff)
downloadcpython-c22d69be5f6ac7f8d844c396f4c93c15f875608c.tar.gz
change DumbWriter to derive from NullWriter
Diffstat (limited to 'Lib/formatter.py')
-rw-r--r--Lib/formatter.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py
index 985f4fb430..026637940e 100644
--- a/Lib/formatter.py
+++ b/Lib/formatter.py
@@ -262,6 +262,7 @@ class AbstractFormatter:
class NullWriter:
"""Minimal writer interface to use in testing.
"""
+ def __init__(self): pass
def new_alignment(self, align): pass
def new_font(self, font): pass
def new_margin(self, margin, level): pass
@@ -275,7 +276,7 @@ class NullWriter:
def send_literal_data(self, data): pass
-class AbstractWriter:
+class AbstractWriter(NullWriter):
def __init__(self):
pass
@@ -314,12 +315,12 @@ class AbstractWriter:
print "send_literal_data(%s)" % `data`
-class DumbWriter(AbstractWriter):
+class DumbWriter(NullWriter):
def __init__(self, file=None, maxcol=72):
self.file = file or sys.stdout
self.maxcol = maxcol
- AbstractWriter.__init__(self)
+ NullWriter.__init__(self)
self.reset()
def reset(self):