blob: 500d338315e0aabbb10a08e4cbf7efebf20de63b (
plain) (
tree)
|
|
import os, sys
__all__ = [ x[0:x.index('.')] \
for x in os.listdir(os.path.dirname(__file__)) \
if x.startswith('tc_') ]
def init():
sys.path.append(os.path.abspath(os.path.join(sys.path[0], '..')))
|