Skip to content

Commit 76c3e5d

Browse files
author
araraonline
committed
Comment _get_objs_combined_axis
1 parent 974fdc3 commit 76c3e5d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/core/indexes/api.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@
4444

4545

4646
def _get_objs_combined_axis(objs, intersect=False, axis=0, sort=True):
47-
# Extract combined index: return intersection or union (depending on the
48-
# value of "intersect") of indexes on given axis, or None if all objects
49-
# lack indexes (e.g. they are numpy arrays)
47+
"""Extract combined index: return intersection or union (depending on the
48+
value of "intersect") of indexes on given axis, or None if all objects
49+
lack indexes (e.g. they are numpy arrays)
50+
"""
5051
obs_idxes = [obj._get_axis(axis) for obj in objs
5152
if hasattr(obj, '_get_axis')]
5253
if obs_idxes:

0 commit comments

Comments
 (0)