Hi,<br>
<br>
What happens if I do the following?<br>
<br>
using namespace boost::python;<br>
<br>
import( &quot;__main__&quot; ).attr( &quot;new_global&quot; ) = 40.0f;<br>
import( &quot;__main__&quot; ).attr( &quot;another_global&quot; ) = 100.0f:<br>
<br>
<br>
My main concern here is performance. I&#39;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&#39;m also wondering if the second import() above will simply<br>
read from a memory cache or something.<br>
<br>
Help would be appreciated.