update setup.py classifiers

This commit is contained in:
Stefan Wojcik
2016-12-11 14:33:53 -05:00
parent 3ebe3748fa
commit 7ffaace4dd
3 changed files with 4 additions and 5 deletions

View File

@@ -127,7 +127,7 @@ class BaseList(list):
return value
def __iter__(self):
for i in range(self.__len__()):
for i in xrange(self.__len__()):
yield self[i]
def __setitem__(self, key, value, *args, **kwargs):