2016-04-06 20:14:05 +00:00
|
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
|
2010-11-12 12:30:30 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.join(os.getcwd(), os.pardir))
|
|
|
|
print(sys.path[0])
|
|
|
|
sys.path.insert(0, os.getcwd())
|
|
|
|
print(sys.path[0])
|