Kaydet (Commit) ca8cdc60 authored tarafından Fred Drake's avatar Fred Drake

(formatter.py): Simplify NullFormatter definition of add_hor_rule() to match

	documentation.
üst 53e84d53
......@@ -16,9 +16,8 @@ class NullFormatter:
self.writer = writer
def end_paragraph(self, blankline): pass
def add_line_break(self): pass
def add_hor_rule(self, abswidth=None, percentwidth=1.0,
height=None, align=None): pass
def add_label_data(self, format, counter): pass
def add_hor_rule(self, *args, **kw): pass
def add_label_data(self, format, counter, blankline=None): pass
def add_flowing_data(self, data): pass
def add_literal_data(self, data): pass
def flush_softspace(self): pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment