diff options
author | Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> | 1996-12-20 21:47:58 (GMT) |
---|---|---|
committer | Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> | 1996-12-20 21:47:58 (GMT) |
commit | 3507f502c932585f07f46d8b21a23984329bdfa9 (patch) | |
tree | baa63672c754d88cdd85cdfb2f27a90dc3d1448f /Lib | |
parent | e9e0bd90ae62eaa8c830b39933b2e16e7b8e29ed (diff) | |
download | cpython-3507f502c932585f07f46d8b21a23984329bdfa9.zip cpython-3507f502c932585f07f46d8b21a23984329bdfa9.tar.gz cpython-3507f502c932585f07f46d8b21a23984329bdfa9.tar.bz2 |
Minor semantic cleanup.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/test_imgfile.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_imgfile.py b/Lib/test/test_imgfile.py index 1126672..1b1198d 100755 --- a/Lib/test/test_imgfile.py +++ b/Lib/test/test_imgfile.py @@ -5,11 +5,11 @@ import imgfile def main(): - getimage('test.rgb') - getimage('greytest.rgb') + testimage('test.rgb') + testimage('greytest.rgb') -def getimage(name): +def testimage(name): """return a tuple consisting of image (in 'imgfile' format) width, height, size """ |