Re: [python-win32] Why can I compile a C extension if I replace python25.lib with python25.dll?

2009-08-07 Thread Michael Torrie
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

Re: [python-win32] ide for python 3.x

2010-05-17 Thread Michael Torrie
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

Re: [python-win32] Win32 GUI for beginners.

2014-01-01 Thread Michael Torrie
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

Re: [python-win32] loading and unloading python24.dll in an embeddedsituation

2006-09-28 Thread Michael Torrie
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