From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 25 Apr 2025 08:42:57 +0000 (+0200) Subject: [3.13] gh-127906: Add missing sys import to test_cppext (GH-132902) (#132904) X-Git-Tag: v3.13.4~227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a759c235c70a9c9408cae412cd5ef87126de384;p=thirdparty%2FPython%2Fcpython.git [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 --- 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