From: "Martin v. Löwis" <[EMAIL PROTECTED]>
I'm personally in favour of supporting "MSYS" as a target system.
If you want to do it, I'm willing to review patches, but I'm not
willing to do them myself, as I don't use MSYS.
If you believe that MSYS is a target system in a way similar to
mingw32, a
""Martin v. Löwis"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Aahz wrote:
>> Hrm. I thought we told people to start with comp.lang.python for
>> porting questions, but I'm happy to be corrected.
>
> I'm unaware of such a policy, but I may have missed the relevant
> discussion
Aahz wrote:
> Hrm. I thought we told people to start with comp.lang.python for
> porting questions, but I'm happy to be corrected.
I'm unaware of such a policy, but I may have missed the relevant
discussion. I could understand that questions of the kind "I tried
to build Python on X, and the comp
On Tue, Jul 05, 2005, "Martin v. L?wis" wrote:
> Aahz wrote:
>>Martin removed the attribution here:
>>>
>>>I was trying to compile a python plugin (for gimp) using the MSYS
>>>shell and the MINGW compiler.
>>
>> python-dev is the wrong place for this question
>
> Actually, it isn't - he is really
lode leroy wrote:
> maybe someone could extend os.path to do this in the standard distribution:
> implement an msyspath.py, which calls ntpath for each function, and does a
> replace at the end of the evaluation.
The chances are good that nobody else will work on this - so it is
likely that it is
Aahz wrote:
>>I was trying to compile a python plugin (for gimp) using the MSYS
>>shell and the MINGW compiler.
>
>
> python-dev is the wrong place for this question
Actually, it isn't - he is really asking what the best way of
porting Python to MSYS is.
Regards,
Martin
On Tue, Jun 28, 2005, lode leroy wrote:
>
> I was trying to compile a python plugin (for gimp) using the MSYS
> shell and the MINGW compiler.
python-dev is the wrong place for this question; please start with
comp.lang.python (or find another suitable place).
--
Aahz ([EMAIL PROTECTED])
I was trying to compile a python plugin (for gimp) using the MSYS shell and
the MINGW compiler.
I now have put this in 'sitecustomize'
$ cat /c/Python24/lib/site-packages/sitecustomize.py
import sys
import os
import re
if os.environ.get("MSYSTEM") == "MINGW32":
os.sep='/'
os.paths