git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@836 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
323 B
Python
15 lines
323 B
Python
# Copyright (C) 2000 Tal Shalif
|
|
# The path hack is by ttn, who doesn't really grok Python...
|
|
|
|
import sys
|
|
# print '(1) sys.path = ', sys.path
|
|
a = ['@ROOT_DIR@/Examples/C++/Python']
|
|
a.extend (sys.path)
|
|
sys.path = a
|
|
# print '(2) sys.path = ', sys.path
|
|
|
|
from cpptest import *
|
|
#import sys
|
|
import types
|
|
|
|
# test_conf.py ends here
|