Skip to content

Commit 7e9ddfb

Browse files
committed
fix
1 parent 93f46f5 commit 7e9ddfb

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

Lib/subprocess.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,6 @@ def _execute_child(self, args, executable, preexec_fn, close_fds,
15181518
unused_restore_signals,
15191519
unused_gid, unused_gids, unused_uid,
15201520
unused_umask,
1521-
unused_start_new_session,
15221521
unused_start_new_session, unused_process_group,
15231522
force_hide):
15241523
"""Execute program (MS Windows version)"""
@@ -1909,7 +1908,6 @@ def _execute_child(self, args, executable, preexec_fn, close_fds,
19091908
errread, errwrite,
19101909
restore_signals,
19111910
gid, gids, uid, umask,
1912-
start_new_session,
19131911
start_new_session, process_group,
19141912
unused_force_hide):
19151913
"""Execute program (POSIX version)"""
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Adds new ``force_hide`` argument to :mod:`subprocess` functions.
2-
This passes ``SW_HIDE`` to the new process, which most applications
1+
Adds new ``force_hide`` argument to :mod:`subprocess` functions.
2+
This passes ``SW_HIDE`` to the new process, which most applications
33
will use to not display any window even if they normally would.

0 commit comments

Comments
 (0)