mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Fixing flake8 E251 errors
This commit is contained in:
@@ -55,9 +55,9 @@ def findlinestarts(code: _have_code) -> Iterator[Tuple[int, int]]: ...
|
||||
def code_info(x: _have_code_or_string) -> str: ...
|
||||
|
||||
# `file` parameter requires sys.version_info >= (3, 4):
|
||||
def dis(x: _have_code_or_string = ..., *, file = ...) -> None: ...
|
||||
def distb(tb: types.TracebackType = ..., *, file: IO[str] = ...) -> None: ...
|
||||
def disassemble(co: _have_code, lasti: int = ..., *, file = ...) -> None: ...
|
||||
def show_code(co: _have_code, *, file: IO[str]=...) -> None: ...
|
||||
def dis(x: _have_code_or_string = ..., *, file: IO[str] = None) -> None: ...
|
||||
def distb(tb: types.TracebackType = ..., *, file: IO[str] = None) -> None: ...
|
||||
def disassemble(co: _have_code, lasti: int = ..., *, file: IO[str] = None) -> None: ...
|
||||
def show_code(co: _have_code, *, file: IO[str] = None) -> None: ...
|
||||
|
||||
def get_instructions(x: _have_code, *, first_line: int = ...) -> Iterator[Instruction]: ...
|
||||
|
||||
Reference in New Issue
Block a user