Skip to content

Commit

Permalink
(formatter.py): Simplify NullFormatter definition of add_hor_rule() t…
Browse files Browse the repository at this point in the history
…o match

	documentation.
  • Loading branch information
freddrake committed Oct 8, 1996
1 parent 53e84d5 commit ca8cdc6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Lib/formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ def __init__(self, writer=None):
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
Expand Down

0 comments on commit ca8cdc6

Please sign in to comment.