Files
openide/python/helpers/syspath.py
2010-08-22 20:47:24 +04:00

4 lines
128 B
Python

import sys
import os.path
for x in sys.path:
if x != os.path.dirname(sys.argv [0]) and x != '.': sys.stdout.write(x+chr(10))