Update of /cvsroot/jython/bugtests
In directory usw-pr-cvs1:/tmp/cvs-serv9435
Added Files:
test324.py
Log Message:
Test for [ #467826 ] SHA digest() method doesn't work
--- NEW FILE: test324.py ---
"""
[ #467826 ] SHA digest() method doesn't work
"""
import support
import sha
s = sha.sha()
s.update("foo")
r = s.digest()
support.compare(len(r), "20")
|