view tests/readlink.py @ 47002:8fc2c867af54 stable

Added tag 5.8rc1 for changeset 8d2b62d716b0
author Augie Fackler <raf@durin42.com>
date Wed, 21 Apr 2021 10:49:28 -0400
parents c102b704edb5
children 6000f5b25c9b
line wrap: on
line source

#!/usr/bin/env python3

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)