Hi,<br>
<br>
What happens if I do the following?<br>
<br>
using namespace boost::python;<br>
<br>
import( "__main__" ).attr( "new_global" ) = 40.0f;<br>
import( "__main__" ).attr( "another_global" ) = 100.0f:<br>
<br>
<br>
My main concern here is performance. I'm wondering if each call to<br>
import() results in a disk query for the script in question and loads it<br>
from there. I'm also wondering if the second import() above will simply<br>
read from a memory cache or something.<br>
<br>
Help would be appreciated.