@@ -642,7 +642,7 @@ Improved Modules
642
642
:mod: `ast `
643
643
----------
644
644
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
646
646
stricter in the arguments they accept,
647
647
with more intuitive behaviour when arguments are omitted.
648
648
@@ -812,7 +812,7 @@ Improved Modules
812
812
:mod: `dis `
813
813
----------
814
814
815
- * Change the output of :mod: `dis ` module functions to show logical
815
+ * Change the output of :mod: `! dis ` module functions to show logical
816
816
labels for jump targets and exception handlers, rather than offsets.
817
817
The offsets can be added with the new
818
818
:option: `-O <dis --show-offsets> ` command-line option
@@ -833,7 +833,7 @@ Improved Modules
833
833
:mod: `doctest `
834
834
--------------
835
835
836
- * :mod: `doctest ` output is now colored by default.
836
+ * :mod: `! doctest ` output is now colored by default.
837
837
This can be controlled via the new :envvar: `PYTHON_COLORS ` environment
838
838
variable as well as the canonical |NO_COLOR |_
839
839
and |FORCE_COLOR |_ environment variables.
@@ -1263,8 +1263,8 @@ All other code will work just fine.
1263
1263
:mod: `subprocess `
1264
1264
-----------------
1265
1265
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.
1268
1268
1269
1269
Notably, when *close_fds * is ``True `` (the default),
1270
1270
:func: `~os.posix_spawn ` will be used when the C library provides
@@ -1274,7 +1274,7 @@ All other code will work just fine.
1274
1274
Linux :c:func: `!vfork ` based code.
1275
1275
1276
1276
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 `
1278
1278
to never use :func: `~os.posix_spawn `.
1279
1279
Please report your reason and platform details in
1280
1280
the :ref: `issue tracker <using-the-tracker >` if you set this
@@ -1318,13 +1318,13 @@ All other code will work just fine.
1318
1318
:mod: `tkinter `
1319
1319
--------------
1320
1320
1321
- * Add :mod: `tkinter ` widget methods:
1321
+ * Add :mod: `! tkinter ` widget methods:
1322
1322
:meth: `!tk_busy_hold `, :meth: `!tk_busy_configure `,
1323
1323
:meth: `!tk_busy_cget `, :meth: `!tk_busy_forget `,
1324
1324
:meth: `!tk_busy_current `, and :meth: `!tk_busy_status `.
1325
1325
(Contributed by Miguel, klappnase and Serhiy Storchaka in :gh: `72684 `.)
1326
1326
1327
- * The :mod: `tkinter ` widget method :meth: `!wm_attributes ` now accepts
1327
+ * The :mod: `! tkinter ` widget method :meth: `!wm_attributes ` now accepts
1328
1328
the attribute name without the minus prefix to get window attributes,
1329
1329
for example ``w.wm_attributes('alpha') ``
1330
1330
and allows specifying attributes and values to set as keyword arguments,
@@ -1403,7 +1403,7 @@ All other code will work just fine.
1403
1403
that can be used to instruct a type checker how to narrow a type.
1404
1404
1405
1405
* 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.
1407
1407
(Contributed by Jelle Zijlstra in :gh: `116126 `.)
1408
1408
1409
1409
* Add :func: `~typing.get_protocol_members ` to return the set of members
0 commit comments