From e6b283f75853daab0edbb9821013eb809d93d648 Mon Sep 17 00:00:00 2001 From: Masashi Honma Date: Thu, 24 Jan 2019 16:45:47 +0900 Subject: [PATCH] tests: Use int instead of long for python3 compatibility This patch is made by using 2to3 command. $ find . -name *.py | xargs 2to3 -f long -w -n Signed-off-by: Masashi Honma --- tests/hwsim/test_ap_wps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hwsim/test_ap_wps.py b/tests/hwsim/test_ap_wps.py index 101690a1c..fe069d396 100644 --- a/tests/hwsim/test_ap_wps.py +++ b/tests/hwsim/test_ap_wps.py @@ -6347,7 +6347,7 @@ def wsc_dh_init(): return own_private, pk def wsc_dh_kdf(peer_pk, own_private, mac_addr, e_nonce, r_nonce): - peer_public = long(binascii.hexlify(peer_pk), 16) + peer_public = int(binascii.hexlify(peer_pk), 16) if peer_public < 2 or peer_public >= group_5_prime: raise Exception("Invalid peer public key") if pow(peer_public, (group_5_prime - 1) / 2, group_5_prime) != 1: