From 8a759c235c70a9c9408cae412cd5ef87126de384 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Fri, 25 Apr 2025 10:42:57 +0200 Subject: [PATCH] [3.13] gh-127906: Add missing sys import to test_cppext (GH-132902) (#132904) gh-127906: Add missing sys import to test_cppext (GH-132902) (cherry picked from commit 9cba14881b371b1e95d57877896169c4605f9b75) Co-authored-by: Victor Stinner --- Lib/test/test_cppext/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_cppext/setup.py b/Lib/test/test_cppext/setup.py index 019ff18446a2..25d71cd9a2c6 100644 --- a/Lib/test/test_cppext/setup.py +++ b/Lib/test/test_cppext/setup.py @@ -3,6 +3,7 @@ import os import platform import shlex +import sys import sysconfig from test import support -- 2.47.3