diff options
author | Guido van Rossum <guido@python.org> | 1997-07-11 18:39:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-11 18:39:03 (GMT) |
commit | 105bd989e36ae0968cdd871a47e9001bb3644ac3 (patch) | |
tree | 2cc3c687b9e7795f2a049e32de5248c3e5cefde3 | |
parent | 1243ae7f0767b5636ad1d071d15778f134f7c65f (diff) | |
download | cpython-105bd989e36ae0968cdd871a47e9001bb3644ac3.zip cpython-105bd989e36ae0968cdd871a47e9001bb3644ac3.tar.gz cpython-105bd989e36ae0968cdd871a47e9001bb3644ac3.tar.bz2 |
Added /usr/bin/env python and made executable.
-rwxr-xr-x | Lib/quopri.py | 2 | ||||
-rwxr-xr-x | Lib/uu.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Lib/quopri.py b/Lib/quopri.py index 47ef751..e8e8397 100755 --- a/Lib/quopri.py +++ b/Lib/quopri.py @@ -1,3 +1,5 @@ +#! /usr/bin/env python + # Conversions to/from quoted-printable transport encoding as per RFC-1521 # (Dec 1991 version). @@ -1,4 +1,5 @@ -# uu.py +#! /usr/bin/env python + # Copyright 1994 by Lance Ellinghouse # Cathedral City, California Republic, United States of America. # All Rights Reserved |