You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
please discuss and decide whether a context manager for managing the current working directory of a process should be added to Python stdlib. Several core developers are in favor of the feature, others are against it.
Personally I'm against the feature, because the presence of the feature would promote a problematic and potentially dangerous style. chdir is not thread-safe and concurrency-safe. There are better ways like dir_fd feature on POSIX, use of absolute paths, or subprocess' cwd argument.
Hi steering council,
please discuss and decide whether a context manager for managing the current working directory of a process should be added to Python stdlib. Several core developers are in favor of the feature, others are against it.
Personally I'm against the feature, because the presence of the feature would promote a problematic and potentially dangerous style. chdir is not thread-safe and concurrency-safe. There are better ways like
dir_fd
feature on POSIX, use of absolute paths, or subprocess'cwd
argument.PR: python/cpython#28271
python-ideas discussion: https://mail.python.org/archives/list/[email protected]/thread/C525UVPP3ALGTXDNFL2GFDV23KCHP3RL/
The text was updated successfully, but these errors were encountered: