Beispiel #1
0
def importModule(modulePath):
    #TODO BUG anybody:  why is this here? It was getting passed as the
    #searchForFreeVariables argument to importModuleFromPath for some reason
    ModuleImporter.builtinModuleImplVal()
    return ForaValue.FORAValue(
                ModuleImporter.importModuleFromPath(
                    modulePath,
                    True
                    )
                )
Beispiel #2
0
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.

import os

import ufora.FORA.python.ModuleImporter as ModuleImporter

import pyfora

import ufora.native.FORA as ForaNative

builtinPythonImplVal = ModuleImporter.importModuleFromPath(
    os.path.join(os.path.abspath(os.path.split(pyfora.__file__)[0]), "fora", "purePython"),
    searchForFreeVariables=True
    )

primitiveTypeMapping = {
    bool: builtinPythonImplVal.getObjectMember("PyBool"),
    str: builtinPythonImplVal.getObjectMember("PyString"),
    int: builtinPythonImplVal.getObjectMember("PyInt"),
    float: builtinPythonImplVal.getObjectMember("PyFloat"),
    type(None): builtinPythonImplVal.getObjectMember("PyNone"),
    }

defaultWrappingNativeListConverter = ForaNative.makePythonListConverter(
    builtinPythonImplVal.getObjectMember("PyList")
    )

defaultWrappingNativeTupleConverter = ForaNative.makePythonTupleConverter(
Beispiel #3
0
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.

import os

import ufora.FORA.python.ModuleImporter as ModuleImporter

import pyfora

import ufora.native.FORA as ForaNative

builtinPythonImplVal = ModuleImporter.importModuleFromPath(
    os.path.join(os.path.abspath(os.path.split(pyfora.__file__)[0]), "fora",
                 "purePython"),
    searchForFreeVariables=True)

primitiveTypeMapping = {
    bool: builtinPythonImplVal.getObjectMember("PyBool"),
    str: builtinPythonImplVal.getObjectMember("PyString"),
    int: builtinPythonImplVal.getObjectMember("PyInt"),
    float: builtinPythonImplVal.getObjectMember("PyFloat"),
    type(None): builtinPythonImplVal.getObjectMember("PyNone"),
}

defaultWrappingNativeListConverter = ForaNative.makePythonListConverter(
    builtinPythonImplVal.getObjectMember("PyList"))

defaultWrappingNativeTupleConverter = ForaNative.makePythonTupleConverter(
    builtinPythonImplVal.getObjectMember("PyTuple"))