(self, newPosition)
| 172 | # Allows one to get and set the index of the stack that we're in |
| 173 | def get_position(self): return self._position |
| 174 | def set_position(self, newPosition): self.moveTo(newPosition) |
| 175 | position = property(get_position, set_position) |
| 176 | |
| 177 | # Returns a list of the blocks that are above us in our stack |