mirror of https://github.com/python/cpython
(formatter.py): Add a flush() method to the writer interface. This really
needs to be a standard part of the interface, so we'll have it in for the next release.
This commit is contained in:
parent
2a37850273
commit
2823168c46
|
@ -265,9 +265,9 @@ class AbstractFormatter:
|
||||||
|
|
||||||
|
|
||||||
class NullWriter:
|
class NullWriter:
|
||||||
"""Minimal writer interface to use in testing.
|
"""Minimal writer interface to use in testing & inheritance."""
|
||||||
"""
|
|
||||||
def __init__(self): pass
|
def __init__(self): pass
|
||||||
|
def flush(self): pass
|
||||||
def new_alignment(self, align): pass
|
def new_alignment(self, align): pass
|
||||||
def new_font(self, font): pass
|
def new_font(self, font): pass
|
||||||
def new_margin(self, margin, level): pass
|
def new_margin(self, margin, level): pass
|
||||||
|
|
Loading…
Reference in New Issue