Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2
/
.
/
Lib
/
test
/
test_zipfile
/
_support.py
blob: 1afdf3b3a773d7d1e12c3671ffd3735a18b42233 [
file
] [
log
] [
blame
]
import
importlib
import
unittest
def
import_or_skip
(
name
):
try
:
return
importlib
.
import_module
(
name
)
except
ImportError
:
# pragma: no cover
raise
unittest
.
SkipTest
(
f
'Unable to import {name}'
)