From fbba304aaa62c57dfdf6feb88e1d996f9425aa02 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 22 Oct 1998 16:18:25 +0000 Subject: [PATCH] Move 'import sys' to top of module, as noted by Tim Peters. --- Lib/uu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/uu.py b/Lib/uu.py index a94291d4a0..ecd76a8628 100755 --- a/Lib/uu.py +++ b/Lib/uu.py @@ -32,6 +32,7 @@ import binascii import os import string +import sys Error = 'uu.Error' @@ -129,7 +130,6 @@ def decode(in_file, out_file=None, mode=None): def test(): """uuencode/uudecode main program""" - import sys import getopt dopt = 0 -- 2.40.0