summaryrefslogtreecommitdiff
path: root/Modules/_posixsubprocess.c
Commit message (Expand)AuthorAgeFilesLines
* Fix computation of max_fd on OpenBSD. Issue #23852.Gregory P. Smith2015-04-251-0/+10
* Issue #23851: close() must not be retried when it fails with EINTRVictor Stinner2015-04-021-6/+6
* Issue #22290: Fix error handling in the _posixsubprocess module.Victor Stinner2014-10-051-6/+14
* Fix the comment to not refer to the removed end_fd parameter.Gregory P. Smith2014-06-011-2/+2
* Don't restrict ourselves to a "max" fd when closing fds before exec()Gregory P. Smith2014-06-011-43/+44
* Add conditional code for android's lack of definition of SYS_getdent64.Gregory P. Smith2014-04-141-0/+6
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-89/+51
* Merge.Charles-Fran?ois Natali2013-08-251-11/+12
|\
| * Issue #18763: subprocess: The file descriptors are now closed after calling theCharles-Fran?ois Natali2013-08-251-11/+12
* | Fixes Issue #16962: Use getdents64 instead of the obsolete getdents syscallGregory P. Smith2013-03-031-14/+8
|\ \ | |/
| * Issue #16962: Use getdents64 instead of the obsolete getdents syscall inGregory P. Smith2013-03-031-14/+8
* | Raise our own SubprocessError rather than a RuntimeError in when dealing withGregory P. Smith2012-11-101-1/+1
|/
* Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-101-10/+12
|\
| * Merge with 3.2Ross Lagerwall2012-08-241-1/+3
| |\
| * \ Merge 3.2.Stefan Krah2012-08-201-0/+2
| |\ \
| * \ \ Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-4/+3
| |\ \ \
| * \ \ \ Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call.Gregory P. Smith2012-06-051-0/+7
| |\ \ \ \
| * | | | | Issue 14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.Ross Lagerwall2012-03-181-1/+12
| * | | | | Use ANSI C prototype instead of K&R style.Ross Lagerwall2012-03-071-1/+1
| * | | | | merge 3.2Benjamin Peterson2012-01-221-24/+31
| |\ \ \ \ \
| * \ \ \ \ \ Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix.Gregory P. Smith2012-01-211-9/+47
| |\ \ \ \ \ \
| * \ \ \ \ \ \ bugfix for *BSD platforms. (oops messed up #define)Gregory P. Smith2012-01-211-4/+2
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ bugfix for issue 8052 fixes on *BSD platforms.Gregory P. Smith2012-01-211-3/+8
| |\ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ Fixes issue #8052: The posix subprocess module's close_fds behavior wasGregory P. Smith2012-01-211-35/+258
| | |\ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ Avoid the compiler warning about the unused return value.Gregory P. Smith2012-01-211-6/+9
| | |\ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ Merge with 3.2 for #11006.Ross Lagerwall2011-12-221-5/+10
| | |\ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-3/+3
| | | * | | | | | | | | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-3/+8
| | | * | | | | | | | | | Issue #12607: Merge with 3.2.Ross Lagerwall2011-07-271-0/+7
| | | |\ \ \ \ \ \ \ \ \ \
| | | * | | | | | | | | | | _posixsubprocess.c: don't redefine _GNU_SOURCE if it's already definedVictor Stinner2011-05-261-2/+2
* | | | | | | | | | | | | | Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-101-1/+6
| |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | |
* | | | | | | | | | | | | Issue 15777: Fix a refleak in _posixsubprocess.Ross Lagerwall2012-08-241-1/+3
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | Issue #15738: Fix a missing NULL check in subprocess_fork_exec().Stefan Krah2012-08-201-0/+2
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-0/+2
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call.Gregory P. Smith2012-06-051-0/+7
* | | | | | | | | | Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.Ross Lagerwall2012-03-191-1/+12
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | fix declaration styleBenjamin Peterson2012-01-221-24/+31
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix.Gregory P. Smith2012-01-211-9/+47
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Another issue #8052 bugfix (related to previous commit).Gregory P. Smith2012-01-211-4/+2
|/ / / / / /
* | | | | | Bugfix for issue #8052 fix on *BSD variants.Gregory P. Smith2012-01-211-9/+13
| |_|_|_|/ |/| | | |
* | | | | Fixes issue #8052: The posix subprocess module's close_fds behavior wasGregory P. Smith2012-01-211-35/+258
| |_|_|/ |/| | |
* | | | Avoid the compiler warning about the unused return value.Gregory P. Smith2012-01-211-6/+9
* | | | Don't redefine _GNU_SOURCE if it's already defined.Ross Lagerwall2011-12-221-2/+2
|/ / /
* | | Issue #11006: Don't issue low level warning in subprocess when pipe2() fails.Ross Lagerwall2011-12-221-6/+0
| |/ |/|
* | Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr isRoss Lagerwall2011-07-271-0/+7
|/
* Fix issue #11432. if the stdin pipe is the same file descriptor as either std...Gregory P. Smith2011-03-151-2/+2
* Issue #10806, issue #9905: Fix subprocess pipes when some of the standardAntoine Pitrou2011-01-031-8/+21
* issue10802: fallback to pipe+fcntl when the pipe2 syscall fails with errno EN...Gregory P. Smith2011-01-021-17/+29
* fix a compiler warning about err_msg potentially being used uninitialized.Gregory P. Smith2010-12-221-1/+1
* Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest.Gregory P. Smith2010-12-141-1/+1