Skip to content
Merged
Changes from all commits
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
Fixed 'add_methods' when the 'select' argument is specified.
  • Loading branch information
HonzaOsobne committed Jul 21, 2017
commit cfa92f168e00b36afd40622f8822fd0cf043f312
4 changes: 3 additions & 1 deletion pandas/core/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,15 @@ def names(x):
def add_methods(cls, new_methods, force, select, exclude):
if select and exclude:
raise TypeError("May only pass either select or exclude")
methods = new_methods

if select:
select = set(select)
methods = {}
for key, method in new_methods.items():
if key in select:
methods[key] = method
new_methods = methods

if exclude:
for k in exclude:
new_methods.pop(k, None)
Expand Down