tests/readlink.py
author Bryan O'Sullivan <bryano@fb.com>
Fri, 14 Sep 2012 12:06:40 -0700
changeset 17558 380a89413403
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
wireproto: don't format a debug string inside a hot loop This improves stream_out performance by about 5%.

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