This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bebac
Recipients bebac, mhammond, tarek, techtonik, terry.reedy
Date 2009-03-15.09:38:41
SpamBayes Score 2.9834198e-05
Marked as misclassified No
Message-id <1237109925.24.0.49417156989.issue4015@psf.upfronthosting.co.za>
In-reply-to
Content
I think this should be the default. I am a rookie in python, setup.py in
particular, but I cannot see how you can write portable setup scripts
without this.

I agree that the batch script can be improved. Here is how ruby gems do it:

@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"ruby.exe" "C:/ruby/bin/fd" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"ruby.exe" "%~dpn0" %*
History
Date User Action Args
2009-03-15 09:38:45bebacsetrecipients: + bebac, mhammond, terry.reedy, techtonik, tarek
2009-03-15 09:38:45bebacsetmessageid: <1237109925.24.0.49417156989.issue4015@psf.upfronthosting.co.za>
2009-03-15 09:38:42bebaclinkissue4015 messages
2009-03-15 09:38:41bebaccreate