summaryrefslogtreecommitdiffstats
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-16 15:54:04 (GMT)
committerGeorg Brandl <georg@python.org>2009-09-16 15:54:04 (GMT)
commitfe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c (patch)
tree5f0300442574c00e152284d0a223380f59dac6bf /Lib/uu.py
parent3d6575dfc85cd11473aa93a8219ac010a823919a (diff)
downloadcpython-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.zip
cpython-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.tar.gz
cpython-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.tar.bz2
Use true booleans and PEP8 for argdefaults.
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-xLib/uu.py2
1 files changed, 1 insertions, 1 deletions
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 @@ 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.