Add codeop.__all__ (#7295)

This commit is contained in:
Alex Waygood
2022-02-19 20:25:51 +00:00
committed by GitHub
parent 199475ef8b
commit f86c918829

View File

@@ -1,5 +1,7 @@
from types import CodeType
__all__ = ["compile_command", "Compile", "CommandCompiler"]
def compile_command(source: str, filename: str = ..., symbol: str = ...) -> CodeType | None: ...
class Compile: