summaryrefslogtreecommitdiff
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-16 15:54:04 +0000
committerGeorg Brandl <georg@python.org>2009-09-16 15:54:04 +0000
commit592795241917d4f21cf68c3ed632e5d96c7dcd58 (patch)
tree7f9abf57ff69515164cef3fb2c42a95b9163d0f3 /Lib/uu.py
parent425a66b009cbeb66bfc80fddee6e7080637e6c5f (diff)
downloadcpython-592795241917d4f21cf68c3ed632e5d96c7dcd58.tar.gz
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 da096ea13f..d70f0e60be 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.