tests/readlink.py
author Matt Mackall <mpm@selenic.com>
Fri, 17 Sep 2010 19:02:26 -0500
changeset 12329 7458de933f26
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
bundle: push chunkbuffer down into decompress We replace the fixup iterator with a file-like object so that uncompressed file streams can be passed end to end through the stack.

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