new test script for cryptmodule.py

This commit is contained in:
Roger E. Masse 1996-12-09 23:13:45 +00:00
parent b6b85ddc95
commit 75362381b5

6
Lib/test/test_crypt.py Executable file
View File

@ -0,0 +1,6 @@
#! /usr/bin/env python
"""Simple test script for cryptmodule.c
Roger E. Masse
"""
import crypt
print 'Test encryption: ', crypt.crypt('mypassword', 'ab')