Skip to content

Commit

Permalink
DOC: Cleaned docstrings (#30158)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaharNaveh authored and WillAyd committed Dec 10, 2019
1 parent 2470690 commit ad0539b
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 93 deletions.
4 changes: 2 additions & 2 deletions pandas/_libs/join.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def left_join_indexer_unique(join_t[:] left, join_t[:] right):
@cython.boundscheck(False)
def left_join_indexer(ndarray[join_t] left, ndarray[join_t] right):
"""
Two-pass algorithm for monotonic indexes. Handles many-to-one merges
Two-pass algorithm for monotonic indexes. Handles many-to-one merges.
"""
cdef:
Py_ssize_t i, j, k, nright, nleft, count
Expand Down Expand Up @@ -403,7 +403,7 @@ def left_join_indexer(ndarray[join_t] left, ndarray[join_t] right):
@cython.boundscheck(False)
def inner_join_indexer(ndarray[join_t] left, ndarray[join_t] right):
"""
Two-pass algorithm for monotonic indexes. Handles many-to-one merges
Two-pass algorithm for monotonic indexes. Handles many-to-one merges.
"""
cdef:
Py_ssize_t i, j, k, nright, nleft, count
Expand Down
Loading

0 comments on commit ad0539b

Please sign in to comment.