tests/readlink.py
author Bryan O'Sullivan <bryano@fb.com>
Thu, 15 Nov 2012 10:55:32 -0800
changeset 17935 9c888b945b65
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
test-pathencode: make a 2.4-safe import of collections

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