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 tim.golden
Recipients brett.cannon, gjb1002, haridsv, hvendelbo, tim.golden
Date 2010-09-27.13:20:53
SpamBayes Score 0.0069271238
Marked as misclassified No
Message-id <4CA09A32.7090101@timgolden.me.uk>
In-reply-to <1285592775.85.0.238487723948.issue2972@psf.upfronthosting.co.za>
Content
Merely from a Windows point-of-view, you could get the full
command line fairly easily:

<code>

import ctypes
pstring = ctypes.windll.kernel32.GetCommandLineW ()
print (ctypes.c_wchar_p (pstring).value)

</code>

TJG
History
Date User Action Args
2010-09-27 13:20:56tim.goldensetrecipients: + tim.golden, brett.cannon, gjb1002, haridsv, hvendelbo
2010-09-27 13:20:53tim.goldenlinkissue2972 messages
2010-09-27 13:20:53tim.goldencreate