tests/readlink.py
author Martijn Pieters <mj@octobus.net>
Mon, 21 Jan 2019 16:04:48 +0000
changeset 41579 bf7fb97aecf1
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
branchmap: make branchcache responsible for reading Encapsulate reading in a classmethod, to make it clear what kind of object is being handled. This is part of a stack of refactoring changes to help performance improvements down the line. Differential Revision: https://phab.mercurial-scm.org/D5635

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