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.
17 lines
327 B
Python
17 lines
327 B
Python
import sys
|
|
|
|
|
|
if True:
|
|
import in_if_always_true
|
|
from in_if_always_true import x as y, z
|
|
else:
|
|
import in_else_never_true
|
|
from in_else_never_true import x as y, z
|
|
|
|
if sys.version >= (3, 0):
|
|
import in_if_py3
|
|
from in_if_py3 import x as y, z
|
|
else:
|
|
import in_else_py2
|
|
from in_else_py2 import x as y, z
|