From 6b164195d9e37ed032b16c426b0eee886e27bc80 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 21 Sep 2026 17:27:47 +0300 Subject: [PATCH] os.system was never soft deprecated --- stdlib/os/__init__.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stdlib/os/__init__.pyi b/stdlib/os/__init__.pyi index 63af29cccff8..89b9bd866420 100644 --- a/stdlib/os/__init__.pyi +++ b/stdlib/os/__init__.pyi @@ -1557,7 +1557,6 @@ else: @deprecated("Soft deprecated. Use the subprocess module instead.") def spawnve(mode: int, path: StrOrBytesPath, argv: _ExecVArgs, env: _ExecEnv, /) -> int: ... -@deprecated("Soft deprecated. Use the subprocess module instead.") def system(command: StrOrBytesPath) -> int: ... @final