/usr/share/pyshared/bike/parsing/setpath.py is in bicyclerepair 0.9-6.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 | import sys,os
if not os.path.abspath("../..") in sys.path:
from bike import log
print >> log.warning, "Appending to the system path. This should only happen in unit tests"
sys.path.append(os.path.abspath("../.."))
|