Return whether or not this path is relative to the other path.
PurePath.is_relative_to(*other)
>>> p = PurePath('/etc/passwd')
>>> p.is_relative_to('/etc')
True
>>> p.is_relative_to('/usr')
False
>>> u = PurePath('/usr')
>>> u == p or u in p.parents
False