This commit is contained in:
Cameron Eure 2012-10-08 13:29:29 -07:00
commit d5f4dc9d3f

2
README
View file

@ -13,7 +13,7 @@ print murmur3.hash32('my string')
a, b, c, d = murmur3.hash128('my other string')
print a, b, c, d
a, b = murmur3,hash128_64('my other other string')
a, b = murmur3.hash128_64('my other other string')
print a, b
See http://code.google.com/p/smhasher/ for more information.