From 684feedc85403aeefe91c59cb97edf8be4e61024 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 15 Oct 2009 16:08:52 +0200 Subject: [PATCH] reenable test forking in test runner --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index b0345d1d..efb4d421 100644 --- a/runtests.py +++ b/runtests.py @@ -387,7 +387,7 @@ class CythonRunTestCase(CythonCompileTestCase): pass def run_doctests(self, module_name, result): - if sys.version_info[0] >= 3 or not hasattr(os, 'forkx'): + if sys.version_info[0] >= 3 or not hasattr(os, 'fork'): doctest.DocTestSuite(module_name).run(result) return -- 2.26.2