Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
gh-87452: Improve the Popen.returncode docs
Clarifies that it remains None until a method checking the child process status has been called and noticed it has terminated.
(cherry picked from commit 68f5836)

Co-authored-by: Joshua Herman <30265+zitterbewegung@users.noreply.github.com>
  • Loading branch information
zitterbewegung authored and miss-islington committed Apr 24, 2023
commit b050c154a7b8fad76ccfd295010a3b24b69e1dd6
9 changes: 6 additions & 3 deletions Doc/library/subprocess.rst
Original file line number Diff line number Diff line change
Expand Up @@ -921,9 +921,12 @@ Reassigning them to new values is unsupported:

.. attribute:: Popen.returncode

The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
by :meth:`communicate`). A ``None`` value indicates that the process
hasn't terminated yet.
The child return code. Initially ``None``, :attr:`returncode` is set by
a call to the :meth:`poll`, :meth:`wait`, or :meth:`communicate` methods
if they detect that the process has terminated.

A ``None`` value indicates that the process hadn't yet terminated at the
time of the last method call.

A negative value ``-N`` indicates that the child was terminated by signal
``N`` (POSIX only).
Expand Down