From f86c91882944f16fd67fbd9e0f27556fd1d2bb8c Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 19 Feb 2022 20:25:51 +0000 Subject: [PATCH] Add `codeop.__all__` (#7295) --- stdlib/codeop.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/codeop.pyi b/stdlib/codeop.pyi index 8ed5710c9..1c00e13fd 100644 --- a/stdlib/codeop.pyi +++ b/stdlib/codeop.pyi @@ -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: