Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-05 Thread Franz Steinhaeusler
On Tue, 05 Apr 2005 01:53:25 +0200, Martin v. Löwis [EMAIL PROTECTED] wrote: Fredrik Lundh wrote: I'm not aware of any other tool that solves that specific problem. notepad does a fine job at creating batch files, IMO. Of course, it is not all that clear what the OP actually wanted. [...]

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-05 Thread rbt
Martin v. Löwis wrote: Of course, it is not all that clear what the OP actually wanted. For all we know, he wanted to alternate quickly (with batch file or similary) between python23 and python24... Maybe off-topic for this thread, but I noticed that when installing 2.4.1 that 2.4.0 is

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-05 Thread Thomas Heller
rbt [EMAIL PROTECTED] writes: Martin v. Löwis wrote: Of course, it is not all that clear what the OP actually wanted. For all we know, he wanted to alternate quickly (with batch file or similary) between python23 and python24... Maybe off-topic for this thread, but I noticed that when

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-05 Thread Brian van den Broek
rbt said unto the world upon 2005-04-05 08:39: Martin v. Löwis wrote: Of course, it is not all that clear what the OP actually wanted. For all we know, he wanted to alternate quickly (with batch file or similary) between python23 and python24... Maybe off-topic for this thread, but I noticed that

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-05 Thread Fredrik Lundh
Martin v. Löwis wrote: I'm not aware of any other tool that solves that specific problem. notepad does a fine job at creating batch files, IMO. have you used exemaker? have you compared the behaviour of the resulting executables to batch files using different environments, shells, and OS

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-05 Thread Martin v. Löwis
Fredrik Lundh wrote: have you used exemaker? have you compared the behaviour of the resulting executables to batch files using different environments, shells, and OS versions? or are you just guessing here? I have invoked it once, but that was some time ago, and I did not do a full case study

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-04 Thread Fredrik Lundh
Franz Steinhäusler wrote: My second question from my last post (PyQt on Python 2.4), I think, is a little got under (i have installed both Python 2.3 and Python 2.4) Is there any possibility under WinXP, to alterntate quickly (with batch file or similary) between python23 and python24. if

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-04 Thread Lucas Raab
Fredrik Lundh wrote: Franz Steinhäusler wrote: My second question from my last post (PyQt on Python 2.4), I think, is a little got under (i have installed both Python 2.3 and Python 2.4) Is there any possibility under WinXP, to alterntate quickly (with batch file or similary) between python23 and

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-04 Thread Fredrik Lundh
Lucas Raab wrote: not to be biased toward your own products at all, or course :-) I'm not aware of any other tool that solves that specific problem. /F -- http://mail.python.org/mailman/listinfo/python-list

Re: Change between Python 2.3 and 2.4 under WinXP

2005-04-04 Thread Martin v. Löwis
Fredrik Lundh wrote: I'm not aware of any other tool that solves that specific problem. notepad does a fine job at creating batch files, IMO. Of course, it is not all that clear what the OP actually wanted. For all we know, he wanted to alternate quickly (with batch file or similary) between

Change between Python 2.3 and 2.4 under WinXP

2005-03-31 Thread Franz Steinhäusler
Hello, My second question from my last post (PyQt on Python 2.4), I think, is a little got under (i have installed both Python 2.3 and Python 2.4) Is there any possibility under WinXP, to alterntate quickly (with batch file or similary) between python23 and python24. Many thanks, -- Franz

Re: Change between Python 2.3 and 2.4 under WinXP

2005-03-31 Thread Martin v. Löwis
Franz Steinhäusler wrote: Is there any possibility under WinXP, to alterntate quickly (with batch file or similary) between python23 and python24. No need to change between them. Just install them both, and select which one to use on a per-invocation base. I.e. do c:\python23\python.exe foo.py

Re: Change between Python 2.3 and 2.4 under WinXP

2005-03-31 Thread Peter Hansen
Martin v. Löwis wrote: Franz Steinhäusler wrote: Is there any possibility under WinXP, to alterntate quickly (with batch file or similary) between python23 and python24. If you are concerned that the .py association changes, you have two options: 1. manually edit the registry. Under

Re: Change between Python 2.3 and 2.4 under WinXP

2005-03-31 Thread Cappy2112
Do you really think this is a safe solution? How do you deal with features that are in new 2.4, but you invoke it with the exe from 2.3? The imports have to be handled as well, and the dlls, and the libs too -- http://mail.python.org/mailman/listinfo/python-list

Re: Change between Python 2.3 and 2.4 under WinXP

2005-03-31 Thread Martin v. Löwis
Cappy2112 wrote: Do you really think this is a safe solution? Not sure which of the three solutions I mentioned you are referring to as this. How do you deal with features that are in new 2.4, but you invoke it with the exe from 2.3? If you want to have the script run with both Python 2.3 and 2.4,