File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -746,6 +746,7 @@ Performance improvements
746
746
- Performance improvement in :func: `factorize ` (:issue: `46109 `)
747
747
- Performance improvement in :class: `DataFrame ` and :class: `Series ` constructors for extension dtype scalars (:issue: `45854 `)
748
748
- Performance improvement in :func: `read_excel ` when ``nrows `` argument provided (:issue: `32727 `)
749
+ - Performance improvement in :meth: `MultiIndex.is_monotonic_increasing ` (:issue: `47458 `)
749
750
750
751
.. ---------------------------------------------------------------------------
751
752
.. _whatsnew_150.bug_fixes :
Original file line number Diff line number Diff line change @@ -180,6 +180,8 @@ def is_lexsorted(list_of_arrays: list) -> bint:
180
180
else :
181
181
result = False
182
182
break
183
+ if not result:
184
+ break
183
185
free(vecs)
184
186
return result
185
187
You can’t perform that action at this time.
0 commit comments