diff options
author | Guido van Rossum <guido@python.org> | 1998-10-22 16:18:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-22 16:18:25 (GMT) |
commit | fbba304aaa62c57dfdf6feb88e1d996f9425aa02 (patch) | |
tree | b1a9ce41de797ecb659f6320018c06c7b1922ab5 | |
parent | 66468568df6e9e56b914b15f36dc091f81117150 (diff) | |
download | cpython-fbba304aaa62c57dfdf6feb88e1d996f9425aa02.zip cpython-fbba304aaa62c57dfdf6feb88e1d996f9425aa02.tar.gz cpython-fbba304aaa62c57dfdf6feb88e1d996f9425aa02.tar.bz2 |
Move 'import sys' to top of module, as noted by Tim Peters.
-rwxr-xr-x | Lib/uu.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |