diff options
author | Guido van Rossum <guido@python.org> | 1996-10-21 18:10:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-21 18:10:19 (GMT) |
commit | b6685dcfeb44fe3ca4792bc603648fa88e07c43d (patch) | |
tree | 87da9faf09d50466f39c746d60050ec558996b53 /Lib | |
parent | 0c373691ae417d7ddb03f1107b6dee231902f048 (diff) | |
download | cpython-b6685dcfeb44fe3ca4792bc603648fa88e07c43d.zip cpython-b6685dcfeb44fe3ca4792bc603648fa88e07c43d.tar.gz cpython-b6685dcfeb44fe3ca4792bc603648fa88e07c43d.tar.bz2 |
The usual...
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/dos-8x3/formatte.py | 5 | ||||
-rwxr-xr-x | Lib/dos-8x3/macurl2p.py | 3 | ||||
-rwxr-xr-x | Lib/dos_8x3/formatte.py | 5 | ||||
-rwxr-xr-x | Lib/dos_8x3/macurl2p.py | 3 |
4 files changed, 8 insertions, 8 deletions
diff --git a/Lib/dos-8x3/formatte.py b/Lib/dos-8x3/formatte.py index 79be0f6..507ed8a 100755 --- a/Lib/dos-8x3/formatte.py +++ b/Lib/dos-8x3/formatte.py @@ -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 diff --git a/Lib/dos-8x3/macurl2p.py b/Lib/dos-8x3/macurl2p.py index 65afe69..7d53d62 100755 --- a/Lib/dos-8x3/macurl2p.py +++ b/Lib/dos-8x3/macurl2p.py @@ -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 diff --git a/Lib/dos_8x3/formatte.py b/Lib/dos_8x3/formatte.py index 79be0f6..507ed8a 100755 --- a/Lib/dos_8x3/formatte.py +++ b/Lib/dos_8x3/formatte.py @@ -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 diff --git a/Lib/dos_8x3/macurl2p.py b/Lib/dos_8x3/macurl2p.py index 65afe69..7d53d62 100755 --- a/Lib/dos_8x3/macurl2p.py +++ b/Lib/dos_8x3/macurl2p.py @@ -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 |