Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 311101f7b6d71d634382cdd943ef3dfcb402aa93 authored by Ned Deily on 26 September 2018, 06:35:30 UTC
3.6.7rc1
Tip revision: 311101f
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