tests/readlink.py
author Augie Fackler <augie@google.com>
Wed, 07 Nov 2018 14:21:39 -0500
changeset 40612 71b8ad0ef3e0
parent 29485 6a98f9408a50
child 45849 c102b704edb5
permissions -rwxr-xr-x
tests: fix up some import statements caught by Python 3 I'm curious how the import checker manages to be so much more pedantic in Python 3, but not enough to bother exploring. Differential Revision: https://phab.mercurial-scm.org/D5240

#!/usr/bin/env python

from __future__ import absolute_import, print_function

import errno
import os
import 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)