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 wom-work
Recipients
Date 2001-07-12.04:30:24
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=203860

"Note that processes using WinMain can get at argc and argv 
under MSVC via including stdlib.h and using __argc and 
__argv instead."

This is irrelevant.  The OS passes the command line into a 
process as a single string, which it makes accessible 
through the GetCommandLine() function.  The argument vector 
received by main() or accessible as __argv is generated 
from this by the C run-time library.

"The right way to address this is to add more smarts to 
spawn.py in distutils"

I disagree.  The right thing to do is to make these 
functions behave in the same way across platforms, as far 
as possible.  Perhaps this could be done in two stages - in 
the first release, make the fix optional, and in the 
second, use it all the time.
History
Date User Action Args
2007-08-23 13:54:56adminlinkissue436259 messages
2007-08-23 13:54:56admincreate