Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6685dc

Browse files
committed
The usual...
1 parent 0c37369 commit b6685dc

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

Lib/dos-8x3/formatte.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ def __init__(self, writer=None):
1616
self.writer = writer
1717
def end_paragraph(self, blankline): pass
1818
def add_line_break(self): pass
19-
def add_hor_rule(self, abswidth=None, percentwidth=1.0,
20-
height=None, align=None): pass
21-
def add_label_data(self, format, counter): pass
19+
def add_hor_rule(self, *args, **kw): pass
20+
def add_label_data(self, format, counter, blankline=None): pass
2221
def add_flowing_data(self, data): pass
2322
def add_literal_data(self, data): pass
2423
def flush_softspace(self): pass

Lib/dos-8x3/macurl2p.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"""Mac specific module for conversion between pathnames and URLs."""
1+
"""Mac specific module for conversion between pathnames and URLs.
2+
Do not import directly, use urllib instead."""
23

34
import string
45
import urllib

Lib/dos_8x3/formatte.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ def __init__(self, writer=None):
1616
self.writer = writer
1717
def end_paragraph(self, blankline): pass
1818
def add_line_break(self): pass
19-
def add_hor_rule(self, abswidth=None, percentwidth=1.0,
20-
height=None, align=None): pass
21-
def add_label_data(self, format, counter): pass
19+
def add_hor_rule(self, *args, **kw): pass
20+
def add_label_data(self, format, counter, blankline=None): pass
2221
def add_flowing_data(self, data): pass
2322
def add_literal_data(self, data): pass
2423
def flush_softspace(self): pass

Lib/dos_8x3/macurl2p.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"""Mac specific module for conversion between pathnames and URLs."""
1+
"""Mac specific module for conversion between pathnames and URLs.
2+
Do not import directly, use urllib instead."""
23

34
import string
45
import urllib

0 commit comments

Comments
 (0)