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 Arfrever, Ben.Darnell, brett.cannon, danielsh, eric.araujo, flox, georg.brandl, ncoghlan, pitrou, rhettinger, tim.golden
Date 2013-01-23.10:03:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358935398.6.0.652336047129.issue14208@psf.upfronthosting.co.za>
In-reply-to
Content
My use case is the reloader or restarter. I've initially fallen foul of this when using the cherrypy reloader (which does an execv by building from sys.executable + sys.argv) but I also have web services running which I'd like to restart remotely by forcing them to execv themselves.

It's trivial to retrieve the original command line from the Windows API, shlex.split it and pass it along to execv so this is hardly a showstopper. But it would be useful to have something equivalent built-in.
History
Date User Action Args
2013-01-23 10:03:18tim.goldensetrecipients: + tim.golden, brett.cannon, georg.brandl, rhettinger, ncoghlan, pitrou, eric.araujo, Arfrever, flox, Ben.Darnell, danielsh
2013-01-23 10:03:18tim.goldensetmessageid: <1358935398.6.0.652336047129.issue14208@psf.upfronthosting.co.za>
2013-01-23 10:03:18tim.goldenlinkissue14208 messages
2013-01-23 10:03:18tim.goldencreate