about summary refs log tree commit diff stats
path: root/arc/.traces/convert-names-compound
blob: 91818bc2c1e774e8d22e7d22be0341b4f68e4b83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
cn0: convert-names in 
cn0: (((x integer-boolean-pair)) <- ((copy)) ((0 literal))) nil nil
cn0: checking arg ((0 literal))
cn0: checking oarg ((x integer-boolean-pair))
maybe-add: ((x integer-boolean-pair))
cn0: location for oarg ((x integer-boolean-pair)): 1
cn0: (((y integer)) <- ((copy)) ((0 literal))) ((x 1)) nil
cn0: checking arg ((0 literal))
cn0: checking oarg ((y integer))
maybe-add: ((y integer))
cn0: location for oarg ((y integer)): 3
cn1: (((1 integer-boolean-pair)) <- ((copy)) ((0 literal)))
cn1: (((3 integer)) <- ((copy)) ((0 literal)))
h/ranger /path/ranger """": if [ $1 ]; then RANGER="$1" shift cd "`$RANGER --cd-after-exit \"$@\" 3>&1 1>&2 2>&3 3>&-`" else echo "usage: source path/to/ranger.py path/to/ranger.py" fi return 1 """ # Redefine the docstring, since the previous one was hijacked to # embed a shellscript. __doc__ = """Ranger - file browser for the unix terminal""" # Importing the main method may fail if the ranger directory # is neither in the same directory as this file, nor in one of # pythons global import paths. try: from ranger import main except ImportError as errormessage: if str(errormessage).endswith("main"): print("Can't import the main module.") print("To run an uninstalled copy of ranger,") print("launch ranger.py in the top directory.") else: raise else: main()