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 vstinner
Recipients vstinner
Date 2020-06-08.14:08:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591625336.45.0.498850044413.issue40910@roundup.psfhosted.org>
In-reply-to
Content
See also bpo-5672 "Implement a way to change the python process name", especially this comment:
https://bugs.python.org/issue5672#msg108524

"""
setproctitle is quite stable, my company uses it in production environment very heavily with python 2.x. Probably its users base is not huge, but that's because it's a relatively specialized tool.

Python3 porting is not straightforward because python2 exports the original argv pointer using Py_GetArgcArgv() whereas python3 only exports a decoded version in a wchar_t* array. This may not be a showstopper: probably the original argv can still be found scanning backwards from environ: I want to test it but I haven't had requests for it yet, so it wasn't a top priority.

So, while I'd be pleased to have it included in the stdlib, I'm not really convinced it would be useful to such a large audience. Anyway I'm available for any improvement it would make the tool more useful and to anybody eager to push for its inclusion.
"""
History
Date User Action Args
2020-06-08 14:08:56vstinnersetrecipients: + vstinner
2020-06-08 14:08:56vstinnersetmessageid: <1591625336.45.0.498850044413.issue40910@roundup.psfhosted.org>
2020-06-08 14:08:56vstinnerlinkissue40910 messages
2020-06-08 14:08:56vstinnercreate