Staging
v0.5.1
https://github.com/python/cpython
Revision e557b5c479bd7ffca36f0c1b300e8c795c7a8ab4 authored by Ned Deily on 29 March 2018, 12:57:23 UTC, committed by Ned Deily on 29 March 2018, 12:57:23 UTC
1 parent 4e7efa9
Raw File
Tip revision: e557b5c479bd7ffca36f0c1b300e8c795c7a8ab4 authored by Ned Deily on 29 March 2018, 12:57:23 UTC
bump to 3.7.0b3+
Tip revision: e557b5c
test_multiprocessing_fork.py
import unittest
import test._test_multiprocessing

from test import support

if support.PGO:
    raise unittest.SkipTest("test is not helpful for PGO")


test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork')

if __name__ == '__main__':
    unittest.main()
back to top