Skip to content

Commit 070a3dd

Browse files
committed
CLN: Remove unused ValuesProperty class.
1 parent 6f6b0df commit 070a3dd

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

pandas/src/properties.pyx

-14
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,3 @@ cdef class AxisProperty(object):
5757

5858
def __set__(self, obj, value):
5959
obj._set_axis(self.axis, value)
60-
61-
cdef class ValuesProperty(object):
62-
63-
def __get__(self, obj, type):
64-
cdef:
65-
ndarray arr = obj
66-
object base
67-
68-
base = np.get_array_base(arr)
69-
if base is None or not np.PyArray_CheckExact(base):
70-
arr = arr.view(np.ndarray)
71-
else:
72-
arr = base
73-
return arr

0 commit comments

Comments
 (0)