tests/readlink.py
author Gregory Szorc <gregory.szorc@gmail.com>
Sun, 20 Feb 2022 15:47:13 -0700
changeset 48816 824b2082550e
parent 45830 c102b704edb5
child 48875 6000f5b25c9b
permissions -rwxr-xr-x
cext: remove Python 2 support We still alias the Python 2 symbols. This will be cleaned up in a separate commit. Differential Revision: https://phab.mercurial-scm.org/D12227

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