1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
import sys
from types import CodeType
__all__ = ["compile_command", "Compile", "CommandCompiler"]
def compile_command(source: str, filename: str = "<input>", symbol: str = "single") -> CodeType | None: ...
class Compile:
flags: int
if sys.version_info >= (3, 13):
def __call__(self, source: str, filename: str, symbol: str, flags: int = 0) -> CodeType: ...
else:
def __call__(self, source: str, filename: str, symbol: str) -> CodeType: ...
class CommandCompiler:
compiler: Compile
def __call__(self, source: str, filename: str = "<input>", symbol: str = "single") -> CodeType | None: ...
|