tests/readlink.py
author Steve Borho <steve@borho.org>
Thu, 21 Oct 2010 16:04:34 -0500
changeset 12913 0e0a52bd58f9
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
import: --no-commit should update .hg/last-message.txt The patch parser goes through all of that trouble extracting the commit message from the patch file. It seems such a waste not to use it.

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