Compare commits

..

No commits in common. "b5395098ced4fd37870d799d72c361fe7464eb2a" and "363e420cd88cc0d59218cd361c69b490cc6fbfff" have entirely different histories.

View File

@ -218,7 +218,7 @@ class Coordinates:
self.get_frame.clear_cache()
def __iter__(self):
for i in range(len(self)):
for i in range(len(self))[self._slice]:
yield self[i]
@singledispatchmethod
@ -232,7 +232,7 @@ class Coordinates:
return sliced
def __len__(self):
return len(self.frames[self._slice])
return len(self.frames)
def __checksum__(self):
return checksum(self.frames, self.atom_filter, self._slice, self.mode)