Tim Roberts wrote:
> It makes a HUGE difference. The gcc compiler in MinGW doesn't
> understand the Microsoft library format. If you want to build
> extensions with MinGW, then you must build your Python from source,
> using MinGW. You can't use a standard distribution. (Well, you could
> use t
Vineet Deodhar wrote:
> Does anybody know whether an IDE (open-source) is available which
> supports Python 3.x and GUI toolkit?
Depends on what GUI toolkit you want to use. If you want to use PyQt,
then Qt's own Designer (or upcoming Qt Creator) and then do python in
any IDE of your choice. The
On 12/31/2013 11:26 AM, Heang Lim wrote:
> 2. When you convert your guiApp.ui into guiApp.py, it creates a Python
> class (e.g Ui_Test_Automation for my apps) with widget objects you need to
> call to trigger widget actions/signals. You will need to look into
> guiApp.py Python script to learn to
On Fri, 2006-09-29 at 09:33 +1000, Mark Hammond wrote:
> > So my question is, is there any way to get these dlls unloaded?
>
> Nope :( Python loads libraries for extension modules, but never unloads
> them.
>
> I'd suggest just never finalizing Python!
Hmm. I'll have to look into that. IT jus