summaryrefslogtreecommitdiffstats
path: root/Doc/howto/instrumentation.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-11-04 12:17:56 (GMT)
committerGitHub <noreply@github.com>2017-11-04 12:17:56 (GMT)
commit12d60560ac8349595d8f44b5e1ec5ff86f3f0029 (patch)
treed3d1d582ae4aaf077390a6a0563cf53510a4c452 /Doc/howto/instrumentation.rst
parentd4d79bc1ff91b04625c312f0219c89aabcd19ce4 (diff)
downloadcpython-12d60560ac8349595d8f44b5e1ec5ff86f3f0029.zip
cpython-12d60560ac8349595d8f44b5e1ec5ff86f3f0029.tar.gz
cpython-12d60560ac8349595d8f44b5e1ec5ff86f3f0029.tar.bz2
Add version{changed,added} markers and make minor style changes (GH-4273)
Diffstat (limited to 'Doc/howto/instrumentation.rst')
-rw-r--r--Doc/howto/instrumentation.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/howto/instrumentation.rst b/Doc/howto/instrumentation.rst
index 2ac939c..b9c51a4 100644
--- a/Doc/howto/instrumentation.rst
+++ b/Doc/howto/instrumentation.rst
@@ -317,12 +317,16 @@ Available static markers
Fires before :mod:`importlib` attempts to find and load the module.
``arg0`` is the module name.
+ .. versionadded:: 3.7
+
.. c:function:: import__find__load__done(str modulename, int found)
Fires after :mod:`importlib`'s find_and_load function is called.
``arg0`` is the module name, ``arg1`` indicates if module was
successfully loaded.
+ .. versionadded:: 3.7
+
SystemTap Tapsets
-----------------