view tests/readlink.py @ 29175:7bcfb9090c86

readlink: use print_function
author timeless <timeless@mozdev.org>
date Wed, 11 May 2016 01:56:59 +0000
parents 328739ea70c3
children 6a98f9408a50
line wrap: on
line source

#!/usr/bin/env python

from __future__ import print_function

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, '->', f, 'not a symlink')

sys.exit(0)