tests/readlink.py
author Pulkit Goyal <7895pulkit@gmail.com>
Tue, 26 Dec 2017 22:56:07 +0530
changeset 35503 b55a142f00c5
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
scmutil: use a tuple of possible values instead of using startswith() This patch also adds a review comment which is helpful as inline comment. Differential Revision: https://phab.mercurial-scm.org/D1761

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