projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b97c305
)
reenable test forking in test runner
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 15 Oct 2009 14:08:52 +0000
(16:08 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 15 Oct 2009 14:08:52 +0000
(16:08 +0200)
runtests.py
patch
|
blob
|
history
diff --git
a/runtests.py
b/runtests.py
index b0345d1ddbc8a41b2f0564683758b8a7a4716234..efb4d4216654a53850d45eb5128690a665718f67 100644
(file)
--- 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, 'fork
x
'):
+ if sys.version_info[0] >= 3 or not hasattr(os, 'fork'):
doctest.DocTestSuite(module_name).run(result)
return