mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-22 20:01:29 +08:00
Remove a few files from the pytype blacklist. (#1628)
Fixes the following issues: * Literals rather than ... for default values * None rather than ... for default value of typed variable * Literals rather than ... # type for top level constants * # Foo rather than # type: Foo * return value of init not set to None
This commit is contained in:
committed by
Matthias Kramm
parent
d14272a14f
commit
d389ef3d85
@@ -4,23 +4,7 @@ import sys
|
||||
|
||||
_Str = Union[bytes, str]
|
||||
|
||||
__all__ = (
|
||||
'urlparse',
|
||||
'urlunparse',
|
||||
'urljoin',
|
||||
'urldefrag',
|
||||
'urlsplit',
|
||||
'urlunsplit',
|
||||
'urlencode',
|
||||
'parse_qs',
|
||||
'parse_qsl',
|
||||
'quote',
|
||||
'quote_plus',
|
||||
'quote_from_bytes',
|
||||
'unquote',
|
||||
'unquote_plus',
|
||||
'unquote_to_bytes'
|
||||
)
|
||||
__all__ = ... # type: Tuple[str]
|
||||
|
||||
uses_relative = ... # type: List[str]
|
||||
uses_netloc = ... # type: List[str]
|
||||
|
||||
Reference in New Issue
Block a user