mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
15 lines
489 B
Python
15 lines
489 B
Python
from types import CodeType
|
|
from typing import Optional
|
|
|
|
def compile_command(source: str, filename: str = ..., symbol: str = ...) -> Optional[CodeType]: ...
|
|
|
|
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 = ...) -> Optional[CodeType]: ...
|