Skip to content

Commit

Permalink
Add misc types for mock and unittest.mock
Browse files Browse the repository at this point in the history
  • Loading branch information
mxr committed Apr 12, 2020
1 parent b3c86bd commit 3625a9b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stdlib/3/unittest/mock.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ from typing import Any, List, Optional, Text, Tuple, Type, TypeVar

_T = TypeVar("_T")

__all__: List[str]

FILTER_DIR: Any

class _slotted: ...
Expand Down
3 changes: 3 additions & 0 deletions third_party/2and3/mock.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ from typing import Any, List, Optional, Text, Tuple, Type, TypeVar

_T = TypeVar("_T")

__all__: List[str]
__version__: str

FILTER_DIR: Any

class _slotted: ...
Expand Down

0 comments on commit 3625a9b

Please sign in to comment.