tests/readlink.py
author Wagner Bruna <wbruna@yahoo.com>
Mon, 06 Feb 2012 08:03:34 -0200
branchstable
changeset 16082 eee86643037c
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
i18n-ja: fix rst markup in hg command output

#!/usr/bin/env python

import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError, err:
        if err.errno != errno.EINVAL:
            raise
        print f, 'not a symlink'

sys.exit(0)