import dataFile
carried over to
dataFile = __import__('dataFile')
Obviously, the developer decided that they want to use strings to identify the modules that they wanted to import. This is apparently the case so that they can dynamically change which module they want to import ...
source
share