##// END OF EJS Templates
revset: move groupbranchiter over from graphmod...
revset: move groupbranchiter over from graphmod This move is to prepare the adaptation of this function into a toposort predicate.

File last commit:

r29175:7bcfb909 default
r29347:98535ad4 default
Show More
readlink.py
15 lines | 295 B | text/x-python | PythonLexer
Thomas Arendsen Hein
Use common readlink.py instead of own implementations per test script.
r5683 #!/usr/bin/env python
timeless
readlink: use print_function
r29175 from __future__ import print_function
Thomas Arendsen Hein
Use common readlink.py instead of own implementations per test script.
r5683 import errno, os, sys
for f in sys.argv[1:]:
try:
timeless
readlink: use print_function
r29175 print(f, '->', os.readlink(f))
Gregory Szorc
global: mass rewrite to use modern exception syntax...
r25660 except OSError as err:
Matt Mackall
many, many trivial check-code fixups
r10282 if err.errno != errno.EINVAL:
raise
timeless
readlink: use print_function
r29175 print(f, '->', f, 'not a symlink')
Thomas Arendsen Hein
Use common readlink.py instead of own implementations per test script.
r5683
sys.exit(0)