Class around PixMap objects that allows more python-like access. By Joe Strout.
[python/dscho.git] / Lib / test / test_crypt.py
blob0685c95eb1e61cd1be40081bf7a8640643aa7163
1 #! /usr/bin/env python
2 """Simple test script for cryptmodule.c
3 Roger E. Masse
4 """
6 from test_support import verbose
7 import crypt
9 c = crypt.crypt('mypassword', 'ab')
10 if verbose:
11 print 'Test encryption: ', c