<div dir="ltr">So, you're both saying that the following two lines are equivalent (from a memory footprint standpoint):<div><ul><li>from PyQt5.QtCore import QVariant</li><li>from PyQt5 import QtCore</li></ul><div>In other words, in both cases, the whole of 'QtCore' will be imported (rather than just 'QVariant' in the first case).</div></div><div><br></div><div>Florian: I think you're saying that I can reduce the memory usage by doing the following.  If so, can we get the UIC and RCC generators to behave this way?</div><div><ul><li>from PyQt5 import QtCore</li><li>mVariant = QtCore.QVariant</li><li>del QtCore</li></ul></div><div><br></div></div>