def get_movable(self, a, b): # Return a new instance without storing it return Movable(a, b)
def get_movable(self, a, b): # Return a referenced copy self.movable = Movable(a, b) return self.movable