summaryrefslogtreecommitdiffstats
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-07-11 04:08:49 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-07-11 04:08:49 (GMT)
commit79c8671c7aee3dfaeb3aa9ce14abe08cc30ecc54 (patch)
tree4874d415e0d0589925edf37be1c9e2f47abb52d0 /Lib/uu.py
parent9178af1455202d1fe9d8ce068ed72be967832304 (diff)
downloadcpython-79c8671c7aee3dfaeb3aa9ce14abe08cc30ecc54.zip
cpython-79c8671c7aee3dfaeb3aa9ce14abe08cc30ecc54.tar.gz
cpython-79c8671c7aee3dfaeb3aa9ce14abe08cc30ecc54.tar.bz2
SF patch #440144: Tests and minor bugfix for uu module
decode(): While writing tests for uu.py, Nick Mathewson discovered that the 'Truncated input file' exception could never get raised, because its "if not str:" test was actually testing the builtin function "str", not the local string vrbl "s" as intended. Bugfix candidate.
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 334d436..11a4e83 100755
--- a/Lib/uu.py
+++ b/Lib/uu.py
@@ -135,7 +135,7 @@ def decode(in_file, out_file=None, mode=None):
sys.stderr.write("Warning: %s\n" % str(v))
out_file.write(data)
s = in_file.readline()
- if not str:
+ if not s:
raise Error, 'Truncated input file'
def test():