From 2aa7d2dd7b3e1ce2d18647cffd6117df4b3f215f Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 19 Feb 2022 20:27:07 +0000 Subject: [PATCH] Add `compileall.__all__` (#7298) All the alls of the alls --- stdlib/compileall.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/compileall.pyi b/stdlib/compileall.pyi index 64b4dc2bc..7101fd05f 100644 --- a/stdlib/compileall.pyi +++ b/stdlib/compileall.pyi @@ -5,6 +5,8 @@ from typing import Any, Protocol if sys.version_info >= (3, 7): from py_compile import PycInvalidationMode +__all__ = ["compile_dir", "compile_file", "compile_path"] + class _SupportsSearch(Protocol): def search(self, string: str) -> Any: ...