mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-05 23:41:34 +08:00
14 lines
455 B
Python
14 lines
455 B
Python
from types import CodeType
|
|
|
|
def compile_command(source: str, filename: str = ..., symbol: str = ...) -> CodeType | None: ...
|
|
|
|
class Compile:
|
|
flags: int
|
|
def __init__(self) -> None: ...
|
|
def __call__(self, source: str, filename: str, symbol: str) -> CodeType: ...
|
|
|
|
class CommandCompiler:
|
|
compiler: Compile
|
|
def __init__(self) -> None: ...
|
|
def __call__(self, source: str, filename: str = ..., symbol: str = ...) -> CodeType | None: ...
|