def swig_import_helper():
from os.path import dirname
import imp
fp = None
try:
fp, pathname, description = imp.find_module('_gdalconst', [dirname(__file__)])
except ImportError:
import _gdalconst
return _gdalconst
if fp is not None:
try:
_mod = imp.load_module('_gdalconst', fp, pathname, description)
finally:
fp.close()
return _mod
评论列表
文章目录