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
Clarify note under sys.monitoring
  • Loading branch information
jonathandung authored Apr 10, 2026
commit dfa3de57430a192a4310b05735889641540a79f4
6 changes: 3 additions & 3 deletions Doc/library/sys.monitoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
.. note::

:mod:`!sys.monitoring` is a namespace within the :mod:`sys` module,
not an independent module, so there is no need to
``import sys.monitoring``, simply ``import sys`` and then use
``sys.monitoring``.
not an independent module, and ``import sys.monitoring`` will fail
Comment thread
picnixz marked this conversation as resolved.
Outdated
with a :exception:`ModuleNotFoundError`. Instead, simply
``import sys`` and then use ``sys.monitoring``.


This namespace provides access to the functions and constants necessary to
Expand Down
Loading