Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
fc2f0fea6bdcaa8940adee52ff10aab71036b985
/
.
/
Lib
/
test
/
test_interpreters
/
__init__.py
blob: e3d189c4efcd2777e6936c2c6b3229d41238b874 [
file
] [
log
] [
blame
]
import
os
from
test
.
support
import
load_package_tests
,
Py_GIL_DISABLED
import
unittest
if
Py_GIL_DISABLED
:
raise
unittest
.
SkipTest
(
"GIL disabled"
)
def
load_tests
(*
args
):
return
load_package_tests
(
os
.
path
.
dirname
(
__file__
),
*
args
)