From 8b4b7860340e1348ec00587a0c79007531e361d5 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Thu, 6 Apr 2017 15:36:31 -0700 Subject: py2/3 don't try to force import threading failure on py3. threading is imported too many places and this form of checking for python being built with thread is no the best way. Use sysconfig.get_config_var('WITH_THREAD') instead --- test/option-j.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/option-j.py b/test/option-j.py index 3dbedc0..278fd30 100644 --- a/test/option-j.py +++ b/test/option-j.py @@ -122,7 +122,7 @@ test.fail_test(start2 < finish1) # succeeds. test.run(arguments='-j 2 out') -if sys.platform != 'win32': +if sys.platform != 'win32' and sys.version_info[0] == 2: # Test breaks on win32 when using real subprocess is not the only # package to import threading # -- cgit v0.12