Merge pull request #324 from FindTheBest/pull_request

Adding the casting of integer -> int for python generated code
This commit is contained in:
Tony Tam 2014-11-05 15:47:44 -08:00
commit 4e9378965b

View File

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