Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c0efe commit 1204eb0Copy full SHA for 1204eb0
1 file changed
lib/core/bigarray.py
@@ -69,7 +69,7 @@ def _checkcache(self, index):
69
self.chunks[self.cache.index] = filename
70
if not (self.cache and self.cache.index == index):
71
with open(self.chunks[index], "rb") as fp:
72
- self.cache = (index, pickle.load(fp), False)
+ self.cache = Cache(index, pickle.load(fp), False)
73
74
def __getitem__(self, y):
75
index = y / BIGARRAY_CHUNK_LENGTH
0 commit comments