Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 2053a0d9eaaf755b990f80ce4df504a7 > files > 413

waf-1.5.9-1mdv2010.0.noarch.rpm

#!/usr/bin/env python

import os
os.popen("python setup.py build && ln -s build/lib*/fnv.so .").read()

import fnv

x = fnv.new()
print x
for num in xrange(15):
	x.update("this is a test")
	print x.hexdigest()