tests/readlink.py
author Patrick Mezard <pmezard@gmail.com>
Sun, 24 Aug 2008 22:13:39 +0200
changeset 6934 abb915d9d8db
parent 5683 396c7010b0cd
child 10282 08a0f04b56bd
permissions -rwxr-xr-x
Backed out changeset d557749c627a Replace this change with a better one.

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