Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
96fff35325e519cc76ffacf22e57e4c393d4446f
/
.
/
Lib
/
test
/
test_zipfile
/
_support.py
blob: 1afdf3b3a773d7d1e12c3671ffd3735a18b42233 [
file
]
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}'
)