I ran across the following bug tonight:<br><br>The insert method of QProcessEnvironment overwrites the environment variable instead of inserting into it.<br><br>=== Example ===<br>from PyQt4 import QtCore<br><br>env = QtCore.QProcessEnvironment.systemEnvironment()<br>

print env.value('PATH')<br>>>C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;<br><br>env.insert('PATH', 'some_path')<br>print env.value('PATH')<br>>>some_path<br><br clear="all">

Cheers,<br>-Scott<br>