tests/readlink.py
author Sean Farley <sean.michael.farley@gmail.com>
Mon, 15 Dec 2014 14:46:04 -0800
changeset 23774 b9537ee87961
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
namespaces: add method to return a list of nodes for a given name This is a helpful method that some extensions can make use of (e.g. for custom revsets); currently not used in core.

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