Skip to content

Commit cb2b4a7

Browse files
committed
Fix expected global extensions for 3.13
1 parent 3806dee commit cb2b4a7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/validation.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -728,9 +728,7 @@ const GLOBAL_EXTENSIONS_PYTHON_3_13: &[&str] = &[
728728
"_interpqueues",
729729
"_interpreters",
730730
"_sha2",
731-
"_suggestions",
732731
"_sysconfig",
733-
"_testexternalinspection",
734732
"_tokenize",
735733
"_typing",
736734
"_zoneinfo",
@@ -762,14 +760,13 @@ const GLOBAL_EXTENSIONS_LINUX_PRE_3_13: &[&str] = &["spwd"];
762760
const GLOBAL_EXTENSIONS_WINDOWS: &[&str] = &[
763761
"_overlapped",
764762
"_winapi",
765-
"_xxsubinterpreters",
766763
"msvcrt",
767764
"nt",
768765
"winreg",
769766
"winsound",
770767
];
771768

772-
const GLOBAL_EXTENSIONS_WINDOWS_PRE_3_13 : &[&str] = &["_msi"];
769+
const GLOBAL_EXTENSIONS_WINDOWS_PRE_3_13: &[&str] = &["_msi"];
773770

774771
/// Extension modules not present in Windows static builds.
775772
const GLOBAL_EXTENSIONS_WINDOWS_NO_STATIC: &[&str] = &["_testinternalcapi", "_tkinter"];

0 commit comments

Comments
 (0)