tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Wed, 01 Jul 2015 15:12:45 -0500
changeset 25690 98064baab877
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
archive: fix changesincelatesttag with wdir()

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