$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [python] Adding a path to sys.path
From: Robert Dailey (rcdailey_at_[hidden])
Date: 2008-10-08 16:10:31
I tried the following code below as an alternative and it still does not
work:
using namespace boost::python;
object sys( import( "sys" ) );
dict sysdict( sys.attr( "__dict__" ) );
list syspath( sysdict["path"] );
syspath.append( "C:\mypath" );
I could really use some help!