tests/readlink.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 15 Jun 2017 13:42:35 -0700
changeset 32868 ef015ba5ba2e
parent 29485 6a98f9408a50
child 45830 c102b704edb5
permissions -rwxr-xr-x
revlog: rename list of nodes from "content" to "nodes" It seems like the reason for "content" is that the variable contains the nodes that the changegroup "contains", see e234eda20984 (revlog: make addgroup returns a list of node contained in the added source, 2012-01-13), but "nodes" seems much clearer.

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