We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0971615 commit a83adadCopy full SHA for a83adad
pandas/core/arrays/datetimelike.py
@@ -155,6 +155,7 @@ def asi8(self):
155
# factorize
156
# _formatting_values
157
# _reduce
158
+ # copy
159
160
def _validate_fill_value(self, fill_value):
161
"""
@@ -196,10 +197,6 @@ def _concat_same_type(cls, to_concat):
196
197
values = np.concatenate([x._data for x in to_concat])
198
return cls._simple_new(values, freq=freq)
199
- def copy(self, deep=False):
200
- # TODO: ignoring `deep`?
201
- return self._shallow_copy(self._data.copy())
202
-
203
# ------------------------------------------------------------------
204
# Array-like Methods
205
0 commit comments