mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 10:51:15 +08:00
Consistently use '= ...' for optional parameters.
This commit is contained in:
@@ -24,10 +24,10 @@ class TextWrapper:
|
||||
break_on_hyphens = ... # type: Any
|
||||
wordsep_re_uni = ... # type: Any
|
||||
wordsep_simple_re_uni = ... # type: Any
|
||||
def __init__(self, width=70, initial_indent='', subsequent_indent='', expand_tabs=True, replace_whitespace=True, fix_sentence_endings=False, break_long_words=True, drop_whitespace=True, break_on_hyphens=True) -> None: ...
|
||||
def __init__(self, width=..., initial_indent=..., subsequent_indent=..., expand_tabs=..., replace_whitespace=..., fix_sentence_endings=..., break_long_words=..., drop_whitespace=..., break_on_hyphens=...) -> None: ...
|
||||
def wrap(self, text): ...
|
||||
def fill(self, text): ...
|
||||
|
||||
def wrap(text, width=70, **kwargs): ...
|
||||
def fill(text, width=70, **kwargs): ...
|
||||
def wrap(text, width=..., **kwargs): ...
|
||||
def fill(text, width=..., **kwargs): ...
|
||||
def dedent(text): ...
|
||||
|
||||
Reference in New Issue
Block a user