This test really only tests the binhex module.

Renamed it and adapted a comment and an error message.
This commit is contained in:
Guido van Rossum 1999-10-19 17:48:54 +00:00
parent d5753e15e2
commit 7b8f1abfca
1 changed files with 2 additions and 2 deletions

View File

@ -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)