tests/readlink.py
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Tue, 06 Apr 2010 00:45:53 +0200
branchstable
changeset 10863 60b42f318a6d
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
clone: no race possible, we can use changegroup() and have smaller urls Related to issue2126

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