tests/readlink.py
author Pulkit Goyal <7895pulkit@gmail.com>
Mon, 25 Dec 2017 15:56:07 +0530
changeset 37029 e2a0aaec7d86
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
commands: use keyword arguments in update function This will help us in having a dictionary with the values of all the arguments and we can add more flags without adding an argument to the function. Differential Revision: https://phab.mercurial-scm.org/D2896

#!/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)