Issue #26941: Fix test_threading that hangs on the Android armv7 qemu emulator.
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
index 845e7d4..2c2914f 100644
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -462,7 +462,7 @@
         self.addCleanup(sys.setswitchinterval, old_interval)
 
         # Make the bug more likely to manifest.
-        sys.setswitchinterval(1e-6)
+        test.support.setswitchinterval(1e-6)
 
         for i in range(20):
             t = threading.Thread(target=lambda: None)