fix self type for stdlib/2 (#645)

This commit is contained in:
Elazar Gershuni
2016-10-30 23:51:52 +02:00
committed by Guido van Rossum
parent 252a772b67
commit 59f86e1b6a
8 changed files with 12 additions and 12 deletions

View File

@@ -32,4 +32,4 @@ def release_lock() -> None: ...
class NullImporter:
def __init__(self, path_string: str) -> None: ...
def find_module(fullname: str, path: str = ...) -> None: ...
def find_module(self, fullname: str, path: str = ...) -> None: ...