mirror of
https://github.com/outbackdingo/patroni.git
synced 2026-08-25 14:53:37 +00:00
Fix flake8 check with python3
This commit is contained in:
+5
-2
@@ -1,13 +1,16 @@
|
|||||||
import datetime
|
import datetime
|
||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
import six
|
import sys
|
||||||
import time
|
import time
|
||||||
import pytz
|
import pytz
|
||||||
import dateutil.parser
|
import dateutil.parser
|
||||||
|
|
||||||
from patroni.exceptions import PatroniException
|
from patroni.exceptions import PatroniException
|
||||||
|
|
||||||
|
if sys.hexversion >= 0x03000000:
|
||||||
|
long = int
|
||||||
|
|
||||||
__interrupted_sleep = False
|
__interrupted_sleep = False
|
||||||
__reap_children = False
|
__reap_children = False
|
||||||
|
|
||||||
@@ -134,7 +137,7 @@ def strtol(value, strict=True):
|
|||||||
while i < l:
|
while i < l:
|
||||||
try: # try to find maximally long number
|
try: # try to find maximally long number
|
||||||
i += 1 # by giving to `int` longer and longer strings
|
i += 1 # by giving to `int` longer and longer strings
|
||||||
ret = int(value[:i], base) if six.PY3 else long(value[:i], base)
|
ret = long(value[:i], base)
|
||||||
except ValueError: # until we will not get an exception or end of the string
|
except ValueError: # until we will not get an exception or end of the string
|
||||||
i -= 1
|
i -= 1
|
||||||
break
|
break
|
||||||
|
|||||||
Reference in New Issue
Block a user