massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / codeop.pyi
1 from types import CodeType
2
3 def compile_command(source: str, filename: str = ..., symbol: str = ...) -> CodeType | None: ...
4
5 class Compile:
6     flags: int
7     def __init__(self) -> None: ...
8     def __call__(self, source: str, filename: str, symbol: str) -> CodeType: ...
9
10 class CommandCompiler:
11     compiler: Compile
12     def __init__(self) -> None: ...
13     def __call__(self, source: str, filename: str = ..., symbol: str = ...) -> CodeType | None: ...