Skip to content

Commit 604e57d

Browse files
committed
use 16 length key
1 parent cfde2e8 commit 604e57d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tools/hashing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def hash_array(vals):
7878

7979
# we want to stringify
8080
# then apply a consistent hashing scheme
81-
vals = _hash.hash_object_array(vals, 'foo')
81+
vals = _hash.hash_object_array(vals, '0123456789123456')
8282

8383
# Then, redistribute these 64-bit ints within the space of 64-bit ints
8484
vals ^= vals >> 30

0 commit comments

Comments
 (0)