Skip to content

Commit 3412a9b

Browse files
code sample for pandas-dev#42003
1 parent 76b7f32 commit 3412a9b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

bisect/42003.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# BUG: 1.3.0rc1 pd.util.hash_array on Index fails to access _values_for_factorize #42003
2+
3+
import pandas as pd
4+
5+
print(pd.__version__)
6+
7+
index = pd.Index([1, 2, 3])
8+
result = pd.util.hash_array(index)
9+
10+
print(result)

0 commit comments

Comments
 (0)