]> granicus.if.org Git - python/commitdiff
Add version{changed,added} markers and make minor style changes (GH-4273)
authorBerker Peksag <berker.peksag@gmail.com>
Sat, 4 Nov 2017 12:17:56 +0000 (15:17 +0300)
committerGitHub <noreply@github.com>
Sat, 4 Nov 2017 12:17:56 +0000 (15:17 +0300)
Doc/howto/instrumentation.rst
Doc/library/pdb.rst
Doc/library/zipapp.rst
Doc/whatsnew/3.7.rst

index 2ac939c5307f46763223d41be9370d9c9f1c9ac2..b9c51a4a4538aba4ce3daf187e2fc9ceefa14341 100644 (file)
@@ -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
 -----------------
index c5d4181c35dab02b01f81eb1ed9d97a9042099cb..4f3148fb5c3ede3fe37c7f96bd603e96cf2d3180 100644 (file)
@@ -123,10 +123,10 @@ slightly different way:
    Enter the debugger at the calling stack frame.  This is useful to hard-code
    a breakpoint at a given point in a program, even if the code is not
    otherwise being debugged (e.g. when an assertion fails).  If given,
-   ``header`` is printed to the console just before debugging begins.
+   *header* is printed to the console just before debugging begins.
 
-   .. versionadded:: 3.7
-      The keyword-only argument ``header``.
+   .. versionchanged:: 3.7
+      The keyword-only argument *header*.
 
 
 .. function:: post_mortem(traceback=None)
index 2bd65cba42e20d53f7e0179958903e195fd99ace..9076593c4b1c220fa53a7deffe670422e5cddff6 100644 (file)
@@ -86,6 +86,8 @@ The following options are understood:
 
    :option:`--compress` has no effect when copying an archive.
 
+   .. versionadded:: 3.7
+
 .. cmdoption:: --info
 
    Display the interpreter embedded in the archive, for diagnostic purposes.  In
index d1792dc97efbe7dad5036f492daf0638832ca114..8d2b52bdcae292a1d565291a65eda89d705f534d 100644 (file)
@@ -318,9 +318,9 @@ to be executed on a process fork.  (Contributed by Antoine Pitrou in
 pdb
 ---
 
-:func:`~pdb.set_trace` now takes an optional ``header`` keyword-only
+:func:`~pdb.set_trace` now takes an optional *header* keyword-only
 argument.  If given, this is printed to the console just before debugging
-begins.
+begins.  (Contributed by Barry Warsaw in :issue:`31389`.)
 
 re
 --