(root)/
Python-3.11.7/
Lib/
test/
test_tomllib/
__init__.py
       1  # SPDX-License-Identifier: MIT
       2  # SPDX-FileCopyrightText: 2021 Taneli Hukkinen
       3  # Licensed to PSF under a Contributor Agreement.
       4  
       5  __all__ = ("tomllib",)
       6  
       7  # By changing this one line, we can run the tests against
       8  # a different module name.
       9  import tomllib
      10  
      11  import os
      12  from test.support import load_package_tests
      13  
      14  def load_tests(*args):
      15      return load_package_tests(os.path.dirname(__file__), *args)