You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
515 B
23 lines
515 B
from __future__ import print_function, unicode_literals, absolute_import
|
|
import glob, sys
|
|
|
|
success = False
|
|
in_ironpython = "IronPython" in sys.version
|
|
|
|
if in_ironpython:
|
|
try:
|
|
from .ironpython_console import *
|
|
success = True
|
|
except ImportError:
|
|
raise
|
|
else:
|
|
try:
|
|
from .console import *
|
|
success = True
|
|
except ImportError:
|
|
pass
|
|
raise
|
|
|
|
if not success:
|
|
raise ImportError(
|
|
"Could not find a console implementation for your platform")
|