https://github.com/python/cpython/commit/8a759c235c70a9c9408cae412cd5ef87126de384 commit: 8a759c235c70a9c9408cae412cd5ef87126de384 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2025-04-25T08:42:57Z summary:
[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 <[email protected]> files: M Lib/test/test_cppext/setup.py diff --git a/Lib/test/test_cppext/setup.py b/Lib/test/test_cppext/setup.py index 019ff18446a2eb..25d71cd9a2c66c 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 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
