tests/readlink.py
author Bryan O'Sullivan <bos@serpentine.com>
Wed, 26 Mar 2008 10:12:10 -0700
changeset 6389 0231f763ebc8
parent 5683 396c7010b0cd
child 10282 08a0f04b56bd
permissions -rwxr-xr-x
manifest: improve parsing performance by 8x via a new C extension

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