class SimpleLocation(_SimpleLocation):
    def __copy__(self):
        c = empty_copy(self)
        c.__dict__ = self.__dict__
        return c