From f871270c92494efc86211167676cbc812a23a1bb Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 28 Mar 2006 10:29:45 +0000 Subject: [PATCH] Make uu use floor division instead of classic division. This was discovered by test_email failing with -Qnew. --- Lib/uu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/uu.py b/Lib/uu.py index 40e8bf00b11..62448aa9b3a 100755 --- a/Lib/uu.py +++ b/Lib/uu.py @@ -132,7 +132,7 @@ def decode(in_file, out_file=None, mode=None, quiet=0): data = binascii.a2b_uu(s) except binascii.Error, v: # Workaround for broken uuencoders by /Fredrik Lundh - nbytes = (((ord(s[0])-32) & 63) * 4 + 5) / 3 + nbytes = (((ord(s[0])-32) & 63) * 4 + 5) // 3 data = binascii.a2b_uu(s[:nbytes]) if not quiet: sys.stderr.write("Warning: %s\n" % v)