Mercurial > hg
view tests/readlink.py @ 48907:b677bccf74b9
charencode: remove Python 2 support code
Differential Revision: https://phab.mercurial-scm.org/D12310
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 21 Feb 2022 10:47:31 -0700 |
parents | 6000f5b25c9b |
children |
line wrap: on
line source
#!/usr/bin/env python3 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)