10000 Fix type annotations in pandas.core.indexes.datetimes by vaibhavhrt · Pull Request #26404 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Fix type annotations in pandas.core.indexes.datetimes #26404

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
May 24, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix signature of function isin to be consistent acoross classes
  • Loading branch information
vaibhavhrt committed May 20, 2019
commit e59dc6aefb87f1c42564404498a4d10b88a5e492
2 changes: 1 addition & 1 deletion pandas/core/indexes/datetimelike.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ def __rsub__(self, other):

cls.__rsub__ = __rsub__

def isin(self, values):
def isin(self, values, level=None):
"""
Compute boolean array of whether each index value is found in the
passed set of values.
Expand Down
0