10000 Implement _most_ of the EA interface for DTA/TDA by jbrockmendel · Pull Request #23643 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Implement _most_ of the EA interface for DTA/TDA #23643

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 11 commits into from
Nov 14, 2018
Prev Previous commit
deduplicate copy
  • Loading branch information
TomAugspurger committed Nov 14, 2018
commit 3cb072e7ec33c860183c8c20bd3596e0a3bff2a0
3 changes: 0 additions & 3 deletions pandas/core/arrays/period.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,6 @@ def fillna(self, value=None, method=None, limit=None):
new_values = self.copy()
return new_values

def copy(self, deep=False):
return type(self)(self._data.copy(), freq=self.freq)

def value_counts(self, dropna=False):
from pandas import Series, PeriodIndex

Expand Down
0