tests/readlink.py
author Martin von Zweigbergk <martinvonz@gmail.com>
Tue, 14 Oct 2014 23:53:35 -0700
changeset 22967 a42d67c16fb9
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
dicthelpers: delete now that they are no longer used

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