From d9d4454b10201c1c1e0da7e95069dd073571beac Mon Sep 17 00:00:00 2001 From: Nils Gillmann Date: Thu, 17 May 2018 16:13:13 +0000 Subject: [PATCH] Revert "PEP 237 unified long integers and integers: http://www.python.org/dev/peps/pep-0237/" This reverts commit cb9b9edd88cb35f998e7d9dd9cd3f614189a582d. Actually this is python3 only. A python2+3 variant must be used for now! --- contrib/gnunet-chk.py.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/gnunet-chk.py.in b/contrib/gnunet-chk.py.in index c976b2143..f20153a8a 100755 --- a/contrib/gnunet-chk.py.in +++ b/contrib/gnunet-chk.py.in @@ -192,9 +192,11 @@ class Chk: def setSize(self, size): self.fsize = size + # 2to3-3.5 suggests to change the code below to: + # if isinstance (self.fsize, int): def uri(self): sizestr = repr(self.fsize) - if isinstance(self.fsize, int): + if isinstance(self.fsize, long): sizestr = sizestr[:-1] return GNUNET_FS_URI_PREFIX + GNUNET_FS_URI_CHK_INFIX + \ encode_data_to_string(bytearray(self.key)) + "." + \ -- 2.25.1