From: Roger E. Masse Date: Mon, 16 Dec 1996 20:44:56 +0000 (+0000) Subject: Updated test_crypt test to jive with bwarsaw testing style X-Git-Tag: v1.5a1~734 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6454e58bc43131be39bcb06fead5464a8f06e3b;p=python Updated test_crypt test to jive with bwarsaw testing style --- diff --git a/Lib/test/test_crypt.py b/Lib/test/test_crypt.py index 08e6b613bd..6fbb780c53 100755 --- a/Lib/test/test_crypt.py +++ b/Lib/test/test_crypt.py @@ -2,5 +2,11 @@ """Simple test script for cryptmodule.c Roger E. Masse """ +verbose = 0 +if __name__ == '__main__': + verbose = 1 + import crypt -print 'Test encryption: ', crypt.crypt('mypassword', 'ab') +c = crypt.crypt('mypassword', 'ab') +if verbose: + print 'Test encryption: ', c