(root)/
Python-3.12.0/
Lib/
test/
test_lib2to3/
__init__.py
       1  # Author: Collin Winter
       2  
       3  import os
       4  import warnings
       5  
       6  from test.support import load_package_tests
       7  
       8  def load_tests(*args):
       9      with warnings.catch_warnings():
      10          warnings.filterwarnings('ignore', category=DeprecationWarning, message='lib2to3')
      11          return load_package_tests(os.path.dirname(__file__), *args)