fix(python3中没有long类型,整形只有int类型,可以当做long类型使用)

This commit is contained in:
wangxin
2020-07-20 11:22:48 +08:00
parent 08b00ebebd
commit b68d2ee5f6

View File

@@ -130,8 +130,8 @@ toDigitList
[Arguments] ${values} ${type}
${list} Create List
FOR ${var} IN @{values}
${var} Run Keyword If "${type}"=="int" Evaluate int('${var}')
... ELSE Evaluate long('${var}')
#wx-fix python3中没有long类型整形只有int类型可以当做long类型使用
${var} Evaluate int('${var}')
Append To List ${list} ${var}
END
[Return] ${list}