(root)/
Python-3.11.7/
Lib/
test/
test_asyncio/
__init__.py
       1  import os
       2  from test import support
       3  from test.support import load_package_tests
       4  from test.support import import_helper
       5  
       6  support.requires_working_socket(module=True)
       7  
       8  # Skip tests if we don't have concurrent.futures.
       9  import_helper.import_module('concurrent.futures')
      10  
      11  def load_tests(*args):
      12      return load_package_tests(os.path.dirname(__file__), *args)