view tests/readlink.py @ 29028:67fd250b7c21 stable

hghave: remove unused check for bdist_mpkg
author Kevin Bullock <kbullock+mercurial@ringworld.org>
date Fri, 29 Apr 2016 14:14:00 -0500
parents 328739ea70c3
children 7bcfb9090c86
line wrap: on
line source

#!/usr/bin/env python

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, 'not a symlink'

sys.exit(0)