Add missing 'self'

This commit is contained in:
Matthias Kramm
2015-09-15 14:51:06 -07:00
parent dd042b3255
commit ac17e9afcf
9 changed files with 96 additions and 96 deletions

View File

@@ -6,11 +6,11 @@
from typing import Any, List, Tuple, Dict, GenericType
class zipimporter(object):
def find_module(a: str, *args, **kwargs) -> None: ...
def get_code(a: str) -> Any: ...
def get_data(a: str) -> str:
def find_module(self, a: str, *args, **kwargs) -> None: ...
def get_code(self, a: str) -> Any: ...
def get_data(self, a: str) -> str:
raise IOError()
def get_filename(a: str) -> str: ...
def get_source(a: str) -> Any: ...
def is_package(a: str) -> bool: ...
def load_module(a: str) -> Any: ...
def get_filename(self, a: str) -> str: ...
def get_source(self, a: str) -> Any: ...
def is_package(self, a: str) -> bool: ...
def load_module(self, a: str) -> Any: ...