From da963fa5dfc20895f47c9876b74f907e5a1aaa95 Mon Sep 17 00:00:00 2001 From: ANSHUL SINGH <72524975+ekanshul@users.noreply.github.com> Date: Sun, 16 Aug 2026 14:02:01 +0530 Subject: [PATCH] [pyinstaller] Add missing compat.is_netbsd PyInstaller.compat defines is_netbsd alongside the other platform flags, but the stub is missing it, so the daily stubtest run fails with: error: PyInstaller.compat.is_netbsd is not present in stub Placed between is_openbsd and is_hpux to match the order upstream. Co-Authored-By: Claude Opus 5 (1M context) --- stubs/pyinstaller/PyInstaller/compat.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/pyinstaller/PyInstaller/compat.pyi b/stubs/pyinstaller/PyInstaller/compat.pyi index 02a3113ffe6f..dd51f4aeb530 100644 --- a/stubs/pyinstaller/PyInstaller/compat.pyi +++ b/stubs/pyinstaller/PyInstaller/compat.pyi @@ -29,6 +29,7 @@ is_solar: Final[bool] is_aix: Final[bool] is_freebsd: Final[bool] is_openbsd: Final[bool] +is_netbsd: Final[bool] is_hpux: Final[bool] is_unix: Final[bool] is_musl: Final[bool]