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 christian.heimes, gregory.p.smith, vstinner
Date 2019-10-10.07:52:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570693978.69.0.558573114205.issue38417@roundup.psfhosted.org>
In-reply-to
Content
> Another use of the deprecated unsafe preexec_fn was to call os.umask in the child prior to exec.

What do you mean by "deprecated"? The parameter doesn't seem to be deprecated in the documentation:
https://docs.python.org/dev/library/subprocess.html#subprocess.Popen

And when I use it, it doesn't emit any warning:
---
import os, subprocess, sys
def func(): print(f"func called in {os.getpid()}")
argv = [sys.executable, "-c", "pass"]
print(f"parent: {os.getpid()}")
subprocess.run(argv, preexec_fn=func)
---

Output:
---
$ ./python -Werror x.py 
parent: 22264
func called in 22265
---

If you want to deprecate it, it should be documented as deprecated and emit a DeprecatedWarning, no?
History
Date User Action Args
2019-10-10 07:52:58vstinnersetrecipients: + vstinner, gregory.p.smith, christian.heimes
2019-10-10 07:52:58vstinnersetmessageid: <1570693978.69.0.558573114205.issue38417@roundup.psfhosted.org>
2019-10-10 07:52:58vstinnerlinkissue38417 messages
2019-10-10 07:52:58vstinnercreate