<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div bgcolor="#FFFFFF" text="#000000"><br>
    When a app uses as example:<br>
    from PyQt4 import QtNetwork<br>
    <br>
    this does not work, as my pyd is called QtNet.pyd.<br>
    So if I change the above import it runs.<br>
    <br>
    My question is, is there a way to work this around? As changing the
    apps using PyQt4 looks like a wrong way to me.<br>
    <br></div></blockquote><div><br></div><div>You could add some code to your port's PyQt4's __init__.py that runs:</div><div><br></div><div>import QtNet </div><div>QtNetwork = QtNet<br></div><div><br></div><div>Seemed to work here when I tested it.</div><div><br></div><div><br></div><div>- m </div></div></div></div>