massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / opcode.pyi
1 import sys
2 from typing import Sequence
3
4 cmp_op: Sequence[str]
5 hasconst: list[int]
6 hasname: list[int]
7 hasjrel: list[int]
8 hasjabs: list[int]
9 haslocal: list[int]
10 hascompare: list[int]
11 hasfree: list[int]
12 opname: list[str]
13
14 opmap: dict[str, int]
15 HAVE_ARGUMENT: int
16 EXTENDED_ARG: int
17
18 if sys.version_info >= (3, 8):
19     def stack_effect(__opcode: int, __oparg: int | None = ..., *, jump: bool | None = ...) -> int: ...
20
21 else:
22     def stack_effect(__opcode: int, __oparg: int | None = ...) -> int: ...
23
24 hasnargs: list[int]