tests/readlink.py
author liscju <piotr.listkiewicz@gmail.com>
Fri, 19 Feb 2016 22:28:09 +0100
changeset 28182 e4fe4e903e97
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
bookmarks: add 'hg push -B .' for pushing the active bookmark (issue4917)

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