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. 9import tomllib 10 11import os 12from test.support import load_package_tests 13 14def load_tests(*args): 15 return load_package_tests(os.path.dirname(__file__), *args) 16