Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion third_party/3/docutils/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from typing import Any

def __getattr__(name) -> Any: ...
def __getattr__(name: str) -> Any: ...
2 changes: 1 addition & 1 deletion third_party/3/docutils/examples.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ from typing import Any

html_parts: Any

def __getattr__(name) -> Any: ...
def __getattr__(name: str) -> Any: ...
4 changes: 2 additions & 2 deletions third_party/3/docutils/nodes.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Any, List

class reference:
def __init__(self, rawsource: str = ..., text: str = ..., *children: List[Any], **attributes) -> None: ...
def __init__(self, rawsource: str = ..., text: str = ..., *children: List[Any], **attributes: Any) -> None: ...

def __getattr__(name) -> Any: ...
def __getattr__(name: str) -> Any: ...
2 changes: 1 addition & 1 deletion third_party/3/docutils/parsers/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from typing import Any

def __getattr__(name) -> Any: ...
def __getattr__(name: str) -> Any: ...
2 changes: 1 addition & 1 deletion third_party/3/docutils/parsers/rst/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from typing import Any

def __getattr__(name) -> Any: ...
def __getattr__(name: str) -> Any: ...
2 changes: 1 addition & 1 deletion third_party/3/docutils/parsers/rst/nodes.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from typing import Any

def __getattr__(name) -> Any: ...
def __getattr__(name: str) -> Any: ...
2 changes: 1 addition & 1 deletion third_party/3/docutils/parsers/rst/states.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ from typing import Any
class Inliner:
def __init__(self) -> None: ...

def __getattr__(name) -> Any: ...
def __getattr__(name: str) -> Any: ...
2 changes: 1 addition & 1 deletion third_party/3/typed_ast/ast27.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ identifier = str
class AST:
_attributes: typing.Tuple[str, ...]
_fields: typing.Tuple[str, ...]
def __init__(self, *args, **kwargs) -> None: ...
def __init__(self, *args: Any, **kwargs: Any) -> None: ...

class mod(AST): ...

Expand Down
2 changes: 1 addition & 1 deletion third_party/3/typed_ast/ast3.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ identifier = str
class AST:
_attributes: typing.Tuple[str, ...]
_fields: typing.Tuple[str, ...]
def __init__(self, *args, **kwargs) -> None: ...
def __init__(self, *args: Any, **kwargs: Any) -> None: ...

class mod(AST): ...

Expand Down
2 changes: 1 addition & 1 deletion third_party/3/waitress/runner.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ def match(obj_name: str) -> Tuple[str, str]: ...
def resolve(module_name: str, object_name: str) -> Any: ...
def show_help(stream: TextIOWrapper, name: str, error: Optional[str] = ...) -> None: ...
def show_exception(stream: TextIOWrapper) -> None: ...
def run(argv: Sequence[str] = ..., _serve: Callable[..., Any] = ...): ...
def run(argv: Sequence[str] = ..., _serve: Callable[..., Any] = ...) -> None: ...