tests/readlink.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 31 Oct 2019 15:02:48 -0700
branchstable
changeset 43371 85ab79bc7dab
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
py3: avoid another b''.format() in chistedit Now you'll get a different traceback if you try to confirm you histedit plan. Differential Revision: https://phab.mercurial-scm.org/D7184

#!/usr/bin/env python

from __future__ import absolute_import, print_function

import errno
import os
import sys

for f in sys.argv[1:]:
    try:
        print(f, '->', os.readlink(f))
    except OSError as err:
        if err.errno != errno.EINVAL:
            raise
        print(f, '->', f, 'not a symlink')

sys.exit(0)