[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2021-01-02 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Note: I did not request a backport, since this really is a new feature. -- ___ Python tracker ___

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2021-01-02 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: https://github.com/python/cpython/pull/23140 merged. Thanks for the patch, Kurochan. -- stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-12-31 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Thanks for the patch. Merging is currently prevented by an unrelated test for nntplib failing. See e.g. https://github.com/python/cpython/pull/23140/checks?check_run_id=1630509357. This is being tracked in https://bugs.python.org/issue42794 --

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-12-31 Thread Kurochan
Kurochan added the comment: Also, PR comment processed. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-12-31 Thread Kurochan
Kurochan added the comment: > If Python is embedded Yes. It's embedded Python. This issue caused in datadog-agent with embedded Python. https://github.com/DataDog/datadog-agent/ > would it be possible to share the code used to configure Python > initialization? I'm not sure where the

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-12-28 Thread STINNER Victor
STINNER Victor added the comment: > Currently, `platform.libc_ver()` doesn't consider in case of `executable` > variable is an empty string. I'm curious. In which case sys.executable is an empty string? Do you embed Python in an application. If Python is embedded, would it be possible to

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-12-28 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Reviewed. Please check on the PR for comments. -- ___ Python tracker ___ ___

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-12-25 Thread Ned Deily
Change by Ned Deily : -- nosy: +lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-12-21 Thread Kurochan
Kurochan added the comment: Can anyone review this PR? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-11-03 Thread Kurochan
Change by Kurochan : -- keywords: +patch pull_requests: +22053 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23140 ___ Python tracker ___

[issue42257] platform.libc_ver() doesn't consider in case of executable is empty string

2020-11-03 Thread Kurochan
New submission from Kurochan : Currently, `platform.libc_ver()` doesn't consider in case of `executable` variable is an empty string. However, with Python 3.8, the following code could pass an empty string `executable` to the `platform.libc_ver()` function.