view tests/readlink.py @ 29237:ee935a6e1ea2

merge with stable
author Matt Mackall <mpm@selenic.com>
date Wed, 25 May 2016 15:32:35 -0500
parents 7bcfb9090c86
children 6a98f9408a50
line wrap: on
line source

#!/usr/bin/env python

from __future__ import print_function

import errno, os, 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)