tests/readlink.py
author Martin Geisler <mg@aragost.com>
Tue, 10 Jan 2012 15:20:16 +0100
branchstable
changeset 15825 8b611944eb84
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
filesets: use example with quotes for encoding predicate A user on IRC was confused that "encoding(ASCII)" works and "encoding(UTF-8)" fails with "parse error: encoding requires an encoding name".

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