mirror of
https://github.com/python/cpython.git
synced 2024-12-01 03:01:36 +01:00
10 lines
184 B
Python
10 lines
184 B
Python
# Author: Collin Winter
|
|
|
|
import os
|
|
import unittest
|
|
|
|
from test.support import load_package_tests
|
|
|
|
def load_tests(*args):
|
|
return load_package_tests(os.path.dirname(__file__), *args)
|