You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
try:
|
|
import in_try
|
|
from in_try import x as y, z
|
|
except ImportError:
|
|
import in_except_importerror
|
|
from in_except_importerror import x as y, z
|
|
except Exception:
|
|
import in_except_exception
|
|
from in_except_exception import x as y, z
|