From 4dbc7eac5654d314b2dcefe87e86387ef527f292 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Tue, 3 May 2016 16:00:17 -0400 Subject: [PATCH] MAINT: Remove byteswap and newbyteorder from LabelArray. --- zipline/lib/labelarray.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/zipline/lib/labelarray.py b/zipline/lib/labelarray.py index fe27ecbe..1c233e66 100644 --- a/zipline/lib/labelarray.py +++ b/zipline/lib/labelarray.py @@ -408,7 +408,6 @@ class LabelArray(ndarray): # numeric methods. SUPPORTED_NDARRAY_METHODS = frozenset([ 'base', - 'byteswap', 'compress', 'copy', 'data', @@ -421,7 +420,6 @@ class LabelArray(ndarray): 'itemsize', 'nbytes', 'ndim', - 'newbyteorder', 'ravel', 'repeat', 'reshape',