commit | fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Wed Sep 16 15:54:04 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Wed Sep 16 15:54:04 2009 +0000 |
tree | 5f0300442574c00e152284d0a223380f59dac6bf | |
parent | 3d6575dfc85cd11473aa93a8219ac010a823919a [diff] [blame] |
Use true booleans and PEP8 for argdefaults.
diff --git a/Lib/uu.py b/Lib/uu.py index da096ea..d70f0e6 100755 --- a/Lib/uu.py +++ b/Lib/uu.py
@@ -80,7 +80,7 @@ out_file.write(b' \nend\n') -def decode(in_file, out_file=None, mode=None, quiet=0): +def decode(in_file, out_file=None, mode=None, quiet=False): """Decode uuencoded file""" # # Open the input file, if needed.