@@ -642,7 +642,7 @@ Improved Modules
642642:mod: `ast `
643643----------
644644
645- * The constructors of node types in the :mod: `ast ` module are now
645+ * The constructors of node types in the :mod: `! ast ` module are now
646646 stricter in the arguments they accept,
647647 with more intuitive behaviour when arguments are omitted.
648648
@@ -812,7 +812,7 @@ Improved Modules
812812:mod: `dis `
813813----------
814814
815- * Change the output of :mod: `dis ` module functions to show logical
815+ * Change the output of :mod: `! dis ` module functions to show logical
816816 labels for jump targets and exception handlers, rather than offsets.
817817 The offsets can be added with the new
818818 :option: `-O <dis --show-offsets> ` command-line option
@@ -833,7 +833,7 @@ Improved Modules
833833:mod: `doctest `
834834--------------
835835
836- * :mod: `doctest ` output is now colored by default.
836+ * :mod: `! doctest ` output is now colored by default.
837837 This can be controlled via the new :envvar: `PYTHON_COLORS ` environment
838838 variable as well as the canonical |NO_COLOR |_
839839 and |FORCE_COLOR |_ environment variables.
@@ -1263,8 +1263,8 @@ All other code will work just fine.
12631263:mod: `subprocess `
12641264-----------------
12651265
1266- * The :mod: `subprocess ` module now uses the :func: `~os.posix_spawn ` function in
1267- more situations.
1266+ * The :mod: `! subprocess ` module now uses the :func: `~os.posix_spawn ` function
1267+ in more situations.
12681268
12691269 Notably, when *close_fds * is ``True `` (the default),
12701270 :func: `~os.posix_spawn ` will be used when the C library provides
@@ -1274,7 +1274,7 @@ All other code will work just fine.
12741274 Linux :c:func: `!vfork ` based code.
12751275
12761276 A private control knob :attr: `!subprocess._USE_POSIX_SPAWN ` can
1277- be set to ``False `` if you need to force :mod: `subprocess `
1277+ be set to ``False `` if you need to force :mod: `! subprocess `
12781278 to never use :func: `~os.posix_spawn `.
12791279 Please report your reason and platform details in
12801280 the :ref: `issue tracker <using-the-tracker >` if you set this
@@ -1318,13 +1318,13 @@ All other code will work just fine.
13181318:mod: `tkinter `
13191319--------------
13201320
1321- * Add :mod: `tkinter ` widget methods:
1321+ * Add :mod: `! tkinter ` widget methods:
13221322 :meth: `!tk_busy_hold `, :meth: `!tk_busy_configure `,
13231323 :meth: `!tk_busy_cget `, :meth: `!tk_busy_forget `,
13241324 :meth: `!tk_busy_current `, and :meth: `!tk_busy_status `.
13251325 (Contributed by Miguel, klappnase and Serhiy Storchaka in :gh: `72684 `.)
13261326
1327- * The :mod: `tkinter ` widget method :meth: `!wm_attributes ` now accepts
1327+ * The :mod: `! tkinter ` widget method :meth: `!wm_attributes ` now accepts
13281328 the attribute name without the minus prefix to get window attributes,
13291329 for example ``w.wm_attributes('alpha') ``
13301330 and allows specifying attributes and values to set as keyword arguments,
@@ -1403,7 +1403,7 @@ All other code will work just fine.
14031403 that can be used to instruct a type checker how to narrow a type.
14041404
14051405* Add :data: `~typing.NoDefault `, a sentinel object used to represent
1406- the defaults of some parameters in the :mod: `typing ` module.
1406+ the defaults of some parameters in the :mod: `! typing ` module.
14071407 (Contributed by Jelle Zijlstra in :gh: `116126 `.)
14081408
14091409* Add :func: `~typing.get_protocol_members ` to return the set of members
0 commit comments