From 54e54c6877329e105406c48490f218faff59db39 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 4 Sep 2001 19:14:14 +0000 Subject: The first batch of changes recommended by the fixdiv tool. These are mostly changes of / operators into //. Once or twice I did more or less than recommended. --- Lib/test/test_audioop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/test/test_audioop.py') diff --git a/Lib/test/test_audioop.py b/Lib/test/test_audioop.py index 495a918b69..a4e191497b 100644 --- a/Lib/test/test_audioop.py +++ b/Lib/test/test_audioop.py @@ -116,8 +116,8 @@ def testlin2lin(data): # too simple: we test only the size for d1 in data: for d2 in data: - got = len(d1)/3 - wtd = len(d2)/3 + got = len(d1)//3 + wtd = len(d2)//3 if len(audioop.lin2lin(d1, got, wtd)) != len(d2): return 0 return 1 -- cgit v1.2.1