Staging
v0.5.1
https://github.com/python/cpython
Revision 5d68e8e312fe66450314c9cd49db9bce63cadc42 authored by Guido van Rossum on 18 November 1997, 15:27:20 UTC, committed by Guido van Rossum on 18 November 1997, 15:27:20 UTC
1 parent eae121e
Raw File
Tip revision: 5d68e8e312fe66450314c9cd49db9bce63cadc42 authored by Guido van Rossum on 18 November 1997, 15:27:20 UTC
Fixed case sensitivity of attributes (they are case *sensitive*).
Tip revision: 5d68e8e
test_cry.py
#! /usr/bin/env python
"""Simple test script for cryptmodule.c
   Roger E. Masse
"""

from test_support import verbose    
import crypt

c = crypt.crypt('mypassword', 'ab')
if verbose:
    print 'Test encryption: ', c
back to top