mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
The usual...
This commit is contained in:
parent
0c373691ae
commit
b6685dcfeb
4 changed files with 8 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Mac specific module for conversion between pathnames and URLs."""
|
||||
"""Mac specific module for conversion between pathnames and URLs.
|
||||
Do not import directly, use urllib instead."""
|
||||
|
||||
import string
|
||||
import urllib
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Mac specific module for conversion between pathnames and URLs."""
|
||||
"""Mac specific module for conversion between pathnames and URLs.
|
||||
Do not import directly, use urllib instead."""
|
||||
|
||||
import string
|
||||
import urllib
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue