tests/readlink.py
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
Fri, 12 Oct 2012 21:41:08 +0200
changeset 17762 57f27cbfc5bb
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
histedit: refuse to edit public changeset Public changeset are immutable. This changeset enforce that in histedit.

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