Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modin/pandas/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def _compute_ndim(row_loc, col_loc):
return ndim


class _Location_Indexer_Base():
class _Location_Indexer_Base(object):
"""Base class for location indexer like loc and iloc
"""

Expand Down
4 changes: 2 additions & 2 deletions modin/pandas/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
_MEMOIZER_CAPACITY = 1000 # Capacity per function


class LRUCache:
class LRUCache(object):
"""A LRUCache implemented with collections.OrderedDict

Notes:
Expand Down Expand Up @@ -48,7 +48,7 @@ def __setitem__(self, key, value):
self.cache[key] = value


class memoize:
class memoize(object):
"""A basic memoizer that cache the input and output of the remote function

Notes:
Expand Down