From 004f12a1ebeb174420f64f77a9e5a85e08d6ed39 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 5 Feb 2022 15:27:01 +0000 Subject: [PATCH] Add `__all__` to `_osx_support` (#7136) --- stdlib/@python2/_osx_support.pyi | 2 +- stdlib/_osx_support.pyi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/@python2/_osx_support.pyi b/stdlib/@python2/_osx_support.pyi index 72645167c..27a4a019d 100644 --- a/stdlib/@python2/_osx_support.pyi +++ b/stdlib/@python2/_osx_support.pyi @@ -4,7 +4,7 @@ _T = TypeVar("_T") _K = TypeVar("_K") _V = TypeVar("_V") -__all__: list[str] +__all__ = ["compiler_fixup", "customize_config_vars", "customize_compiler", "get_platform_osx"] _UNIVERSAL_CONFIG_VARS: tuple[str, ...] # undocumented _COMPILER_CONFIG_VARS: tuple[str, ...] # undocumented diff --git a/stdlib/_osx_support.pyi b/stdlib/_osx_support.pyi index ffb25d5a2..cb43fa93b 100644 --- a/stdlib/_osx_support.pyi +++ b/stdlib/_osx_support.pyi @@ -5,7 +5,7 @@ _T = TypeVar("_T") _K = TypeVar("_K") _V = TypeVar("_V") -__all__: list[str] +__all__ = ["compiler_fixup", "customize_config_vars", "customize_compiler", "get_platform_osx"] _UNIVERSAL_CONFIG_VARS: tuple[str, ...] # undocumented _COMPILER_CONFIG_VARS: tuple[str, ...] # undocumented