/usr/lib/python2.7/dist-packages/pyarco/Path.py is in atheist 0.20110402-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # -*- mode:python; coding:utf-8 -*-
import os
def resolve_path(fname, paths, find_all=False):
'''Busca fname en las rutas indicadas y devuelve la primera ruta
completa dónde lo encuentre. Todas si se indica find_all'''
retval = []
for p in paths:
path = os.path.join(p, fname)
if os.path.exists(path):
if find_all:
retval.append(path)
else:
return [path]
return retval
|