tests/readlink.py
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Sun, 10 Oct 2010 18:58:45 +0200
changeset 12708 8a08b12ae88e
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
localrepo: use propertycaches to access encode/decode filters

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