From 070a3dd873b397c26f5a407ea8f2a130c54c80ce Mon Sep 17 00:00:00 2001 From: Jeffrey Tratner Date: Sun, 20 Oct 2013 01:08:31 -0400 Subject: [PATCH] CLN: Remove unused ValuesProperty class. --- pandas/src/properties.pyx | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pandas/src/properties.pyx b/pandas/src/properties.pyx index 28e1ecfefc6a8..a8b39d13db2f6 100644 --- a/pandas/src/properties.pyx +++ b/pandas/src/properties.pyx @@ -57,17 +57,3 @@ cdef class AxisProperty(object): def __set__(self, obj, value): obj._set_axis(self.axis, value) - -cdef class ValuesProperty(object): - - def __get__(self, obj, type): - cdef: - ndarray arr = obj - object base - - base = np.get_array_base(arr) - if base is None or not np.PyArray_CheckExact(base): - arr = arr.view(np.ndarray) - else: - arr = base - return arr