Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
6 changes: 5 additions & 1 deletion docs/source/reference-io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,11 @@ task and interact with it while it's running:

.. autofunction:: trio.run_process

.. autoclass:: trio.Process
.. autoclass:: trio._subprocess.HasFileno(Protocol)

.. automethod:: fileno

.. autoclass:: trio.Process()

.. autoattribute:: returncode

Expand Down
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ module = [
"trio._highlevel_open_tcp_stream",
"trio._ki",
"trio._socket",
"trio._subprocess",
"trio._subprocess_platform",
"trio._subprocess_platform.kqueue",
"trio._subprocess_platform.waitid",
"trio._subprocess_platform.windows",
"trio._sync",
"trio._threads",
"trio._tools.gen_exports",
Expand Down
Loading