python3 updates

This commit is contained in:
ThomasV 2017-08-12 21:26:57 +02:00
parent cea705b153
commit d8e37644d3
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ class PRNG:
return seq[self.randint(0, len(seq))] return seq[self.randint(0, len(seq))]
def shuffle(self, x): def shuffle(self, x):
for i in reversed(xrange(1, len(x))): for i in reversed(range(1, len(x))):
# pick an element in x[:i+1] with which to exchange x[i] # pick an element in x[:i+1] with which to exchange x[i]
j = self.randint(0, i+1) j = self.randint(0, i+1)
x[i], x[j] = x[j], x[i] x[i], x[j] = x[j], x[i]

View File

@ -29,8 +29,8 @@ import re
import requests import requests
import json import json
from hashlib import sha256 from hashlib import sha256
from urlparse import urljoin from urllib.parse import urljoin
from urllib import quote from urllib.parse import quote
import electrum import electrum
from electrum import bitcoin from electrum import bitcoin