swig/Examples/C++/test_conf.py.in
Thien-Thi Nguyen d01e1d7cad Initial revision
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@836 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2000-09-04 04:06:55 +00:00

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