Skip to content
Open
Changes from all commits
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
5 changes: 5 additions & 0 deletions Doc/library/profiling.sampling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,11 @@ This requires one of:
On Windows, the profiler requires administrative privileges or the
``SeDebugPrivilege`` privilege to read another process's memory.

*Note*: On Windows, ``python -m profiling.sampling`` fails inside a virtual
environment because the venv's ``python.exe`` is just a launcher shim that
re-executes the base interpreter as a child process. The shim itself isn't
a Python process and has no ``PyRuntime`` section to attach to. Instead,
run it from the global Python installation.

Version compatibility
---------------------
Expand Down
Loading