mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
32 lines
893 B
Python
32 lines
893 B
Python
# This is an autogenerated file. It serves as a starting point
|
|
# for a more percise manual annotation of this module.
|
|
# Feel free to edit the source below, but remove this header when you do.
|
|
|
|
def profiler(a: str, *args, **kwargs) -> object:
|
|
raise IOError()
|
|
|
|
def coverage(a: str) -> object: pass
|
|
|
|
def logreader(a: str) -> LogReaderType:
|
|
raise IOError()
|
|
raise RuntimeError()
|
|
|
|
def resolution() -> tuple: pass
|
|
|
|
|
|
class LogReaderType(object):
|
|
def close() -> NoneType: pass
|
|
def fileno() -> int:
|
|
raise ValueError()
|
|
|
|
class ProfilerType(object):
|
|
def addinfo(a: str, b: str) -> NoneType: pass
|
|
def close() -> NoneType: pass
|
|
def fileno() -> int:
|
|
raise ValueError()
|
|
def runcall(*args, **kwargs) -> object: pass
|
|
def runcode(a, b, *args, **kwargs) -> object:
|
|
raise TypeError()
|
|
def start() -> NoneType: pass
|
|
def stop() -> NoneType: pass
|