mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Consistently use '= ...' for optional parameters.
This commit is contained in:
@@ -14,7 +14,7 @@ punctuation = ... # type: str
|
||||
printable = ... # type: str
|
||||
whitespace = ... # type: str
|
||||
|
||||
def capwords(s: str, sep: str = None) -> str: ...
|
||||
def capwords(s: str, sep: str = ...) -> str: ...
|
||||
|
||||
class Template:
|
||||
template = ... # type: str
|
||||
|
||||
Reference in New Issue
Block a user