Files
codeql/python/ql/src/Statements/TopLevelPrint.py
2018-11-19 15:10:42 +00:00

16 lines
359 B
Python

try:
import fast_system as system
except ImportError:
print ("Cannot import fast system, falling back on slow system")
import slow_system as system
#Fixed version
import logging
try:
import fast_system as system
except ImportError:
logging.info("Cannot import fast system, falling back on slow system")
import slow_system as system