diff options
author | Georg Brandl <georg@python.org> | 2009-09-16 15:54:04 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-16 15:54:04 +0000 |
commit | fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c (patch) | |
tree | 5f0300442574c00e152284d0a223380f59dac6bf /Lib/uu.py | |
parent | 3d6575dfc85cd11473aa93a8219ac010a823919a (diff) | |
download | cpython-git-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.tar.gz |
Use true booleans and PEP8 for argdefaults.
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-x | Lib/uu.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ def encode(in_file, out_file, name=None, mode=None): 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. |