Files
typeshed/2.7/zipimport.pyi
2015-09-15 15:41:17 -07:00

17 lines
670 B
Python

"""Stub file for the 'zipimport' module."""
# This is an autogenerated file. It serves as a starting point
# for a more precise manual annotation of this module.
# Feel free to edit the source below, but remove this header when you do.
from typing import Any, List, Tuple, Dict, Generic
class zipimporter(object):
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(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: ...