mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
json.py: Typo in parsing code.
This commit is contained in:
@@ -267,7 +267,7 @@ class Parser(object):
|
||||
self.__parser_input(0)
|
||||
return
|
||||
elif significand <= 2 ** 63:
|
||||
while pow10 > 0 and significand <= 2 * 63:
|
||||
while pow10 > 0 and significand <= 2 ** 63:
|
||||
significand *= 10
|
||||
pow10 -= 1
|
||||
while pow10 < 0 and significand % 10 == 0:
|
||||
|
Reference in New Issue
Block a user