We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 084b199 commit 8f9604bCopy full SHA for 8f9604b
pandas/core/indexing.py
@@ -98,6 +98,7 @@
98
99
100
# the public IndexSlicerMaker
101
+@set_module("pandas")
102
class _IndexSlice:
103
"""
104
Create an object to more easily perform multi-index slicing.
pandas/tests/api/test_api.py
@@ -416,3 +416,4 @@ def test_set_module():
416
assert pd.Period.__module__ == "pandas"
417
assert pd.Timestamp.__module__ == "pandas"
418
assert pd.Timedelta.__module__ == "pandas"
419
+ assert pd.IndexSlice.__module__ == "pandas"
0 commit comments