try:
from yaml import CLoader as Loader
logger.debug("using C implementation of yaml")
except ImportError:
from yaml import Loader
logger.debug("using default yaml")
try:
import cPickle as pickle
logger.debug("using C implementation of pickle")
except ImportError:
import pickle
logger.debug("using default pickle")
YADT an Augmented Deployment Tool
Copyright (C) 2010-2016
Immobilien Scout GmbH
Licensed under GNU GPL v3
2016-05-11 10:48:37 +0000