Adding the casting of integer -> int for python generated code

This commit is contained in:
James Ebentier 2014-11-05 15:37:22 -08:00
parent b8f3201dba
commit d1fe146522

View File

@ -97,6 +97,7 @@ class BasicPythonGenerator extends BasicGenerator {
}
}
override def typeMapping = Map(
"integer" -> "int",
"float" -> "float",
"long" -> "long",
"double" -> "float",