(root)/
Python-3.11.7/
Lib/
test/
test_multiprocessing_forkserver/
__init__.py
       1  import os.path
       2  import sys
       3  import unittest
       4  from test import support
       5  
       6  if support.PGO:
       7      raise unittest.SkipTest("test is not helpful for PGO")
       8  
       9  if sys.platform == "win32":
      10      raise unittest.SkipTest("forkserver is not available on Windows")
      11  
      12  def load_tests(*args):
      13      return support.load_package_tests(os.path.dirname(__file__), *args)