source: trunk/essentials/dev-lang/python/Lib/test/test_crypt.py@ 3951

Last change on this file since 3951 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 227 bytes
Line 
1#! /usr/bin/env python
2"""Simple test script for cryptmodule.c
3 Roger E. Masse
4"""
5
6from test.test_support import verify, verbose
7import crypt
8
9c = crypt.crypt('mypassword', 'ab')
10if verbose:
11 print 'Test encryption: ', c
Note: See TracBrowser for help on using the repository browser.