Update version number and release date.
[python/dscho.git] / Lib / test / test_crypt.py
blobdfbcbdf2283dd886c155358a6e966f80c77af25a
1 #! /usr/bin/env python
2 """Simple test script for cryptmodule.c
3 Roger E. Masse
4 """
6 from test.test_support import verify, verbose
7 import crypt
9 c = crypt.crypt('mypassword', 'ab')
10 if verbose:
11 print 'Test encryption: ', c