https://github.com/python/cpython
Raw File
Tip revision: 882f62bd93fcd5775068c3b3d1e5ce62f2feaba3 authored by Ɓukasz Langa on 19 March 2024, 15:48:02 UTC
Python 3.9.19
Tip revision: 882f62b
__init__.py
# Author: Collin Winter

import os

from test.support import load_package_tests

def load_tests(*args):
    return load_package_tests(os.path.dirname(__file__), *args)
back to top