summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_binhex.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-10-19 17:48:54 (GMT)
committerGuido van Rossum <guido@python.org>1999-10-19 17:48:54 (GMT)
commit7b8f1abfca6b0f469716adc2f5514c3e3cf4531a (patch)
tree1e4b79f1bce66c8f02c03fca8de872a7c6ded10f /Lib/test/test_binhex.py
parentd5753e15e284597d973c2133e3b2b5111b049d72 (diff)
downloadcpython-7b8f1abfca6b0f469716adc2f5514c3e3cf4531a.zip
cpython-7b8f1abfca6b0f469716adc2f5514c3e3cf4531a.tar.gz
cpython-7b8f1abfca6b0f469716adc2f5514c3e3cf4531a.tar.bz2
This test really only tests the binhex module.
Renamed it and adapted a comment and an error message.
Diffstat (limited to 'Lib/test/test_binhex.py')
-rwxr-xr-xLib/test/test_binhex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index fe3843d..534fa73 100755
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -1,5 +1,5 @@
#! /usr/bin/env python
-"""Test script for the binascii C module
+"""Test script for the binhex C module
Uses the mechanism of the python binhex module
Roger E. Masse
@@ -15,7 +15,7 @@ def test():
fname2 = tempfile.mktemp()
f = open(fname1, 'w')
except:
- raise ImportError, "Cannot test binascii without a temp file"
+ raise ImportError, "Cannot test binhex without a temp file"
start = 'Jack is my hero'
f.write(start)