-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
COMPAT: Standardize method signatures #12662
Labels
Milestone
Comments
searchsorted
API
In my quest to conquer |
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 13, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 13, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 13, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 14, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 15, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 16, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 17, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 18, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 18, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 20, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 20, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 22, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 22, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 23, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 25, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 25, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 25, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(key, side='left', sorter=None) Closes pandas-devgh-12662.
gfyoung
added a commit
to forking-repos/pandas
that referenced
this issue
Nov 25, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(value, side='left', sorter=None) Closes pandas-devgh-12662.
jorisvandenbossche
pushed a commit
that referenced
this issue
Nov 26, 2016
Standardize the following function signatures: 1) repeat(reps, *args, **kwargs) 2) searchsorted(value, side='left', sorter=None) Closes gh-12662.
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, the parameter for values that one needs to insert into an array-like object such as
DataFrame
orSeries
is inconsistent across implementations. For example,base.py
surfaces it askey
, whereasseries.py
surfaces it asv
.This issue was identified while fixing an issue for
v0.18.1
(xref #12413), but in the interests of maintaining backwards compatibility for a minor release, this change should be made as early asv0.19.0
with the following API comment:"The signature for
searchsorted
has changed. It is nowsearchsorted(self, value, side='left', sorter=None)
."List of functions with signature inconsistencies:
searchsorted
repeat
@jreback
@jorisvandenbossche
The text was updated successfully, but these errors were encountered: