##// END OF EJS Templates
histedit: py3 fixes for curses mode...
histedit: py3 fixes for curses mode Differential Revision: https://phab.mercurial-scm.org/D8150

File last commit:

r29485:6a98f940 default
r44892:9b8e13a0 stable
Show More
readlink.py
17 lines | 324 B | text/x-python | PythonLexer
#!/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)