view tests/readlink.py @ 5946:ee0dc0f3804b

keyword: improve use of dicts - actually use iteritems() when we iter over items of a dictionary - store commit hooks in dictionary (safe, as hook.hook() sorts before execution)
author Christian Ebert <blacktrash@gmx.net>
date Tue, 22 Jan 2008 13:12:43 +0100
parents 396c7010b0cd
children 08a0f04b56bd
line wrap: on
line source

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