Skip to content

Commit a83adad

Browse files
committed
un-implement copy
1 parent 0971615 commit a83adad

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/core/arrays/datetimelike.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ def asi8(self):
155155
# factorize
156156
# _formatting_values
157157
# _reduce
158+
# copy
158159

159160
def _validate_fill_value(self, fill_value):
160161
"""
@@ -196,10 +197,6 @@ def _concat_same_type(cls, to_concat):
196197
values = np.concatenate([x._data for x in to_concat])
197198
return cls._simple_new(values, freq=freq)
198199

199-
def copy(self, deep=False):
200-
# TODO: ignoring `deep`?
201-
return self._shallow_copy(self._data.copy())
202-
203200
# ------------------------------------------------------------------
204201
# Array-like Methods
205202

0 commit comments

Comments
 (0)