diff --git a/bisect/38556.py b/bisect/38556.py new file mode 100644 index 0000000000000..6324b78861fbe --- /dev/null +++ b/bisect/38556.py @@ -0,0 +1,8 @@ +import pandas as pd + +print(pd.__version__) + +res = pd.CategoricalIndex(["A", "B", "C", "A", "B"]).get_indexer( + pd.CategoricalIndex(["B", "C", "D", "E"]) +) +print(res)