tests/readlink.py
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
Sun, 08 May 2016 10:43:41 +0200
changeset 29100 3fd94f603190
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
devel: use the 'config' argument for the dirstate normalisation develwarn

#!/usr/bin/env python

import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError as err:
        if err.errno != errno.EINVAL:
            raise
        print f, 'not a symlink'

sys.exit(0)