bpo-5978: Document that profiling needs cmd/function to return (GH-7938)

<!-- issue-number: bpo-5978 -->
https://bugs.python.org/issue5978
<!-- /issue-number -->
This commit is contained in:
Andrés Delfino 2018-07-28 07:01:24 -03:00 committed by Christian Heimes
parent b4bc5cab82
commit 937fb55d35
1 changed files with 5 additions and 0 deletions

View File

@ -310,6 +310,11 @@ functions:
Profile ``func(*args, **kwargs)``
Note that profiling will only work if the called command/function actually
returns. If the interpreter is terminated (e.g. via a :func:`sys.exit` call
during the called command/function execution) no profiling results will be
printed.
.. _profile-stats:
The :class:`Stats` Class