@@ -178,9 +178,9 @@ Root nodes
178
178
A Python module, as with :ref: `file input <file-input >`.
179
179
Node type generated by :func: `ast.parse ` in the default ``"exec" `` *mode *.
180
180
181
- * body * is a :class: `list ` of the module's :ref: `ast-statements `.
181
+ `` body `` is a :class: `list ` of the module's :ref: `ast-statements `.
182
182
183
- * type_ignores * is a :class: `list ` of the module's type ignore comments;
183
+ `` type_ignores `` is a :class: `list ` of the module's type ignore comments;
184
184
see :func: `ast.parse ` for more details.
185
185
186
186
.. doctest ::
@@ -199,7 +199,7 @@ Root nodes
199
199
A single Python :ref: `expression input <expression-input >`.
200
200
Node type generated by :func: `ast.parse ` when *mode * is ``"eval" ``.
201
201
202
- * body * is a single node,
202
+ `` body `` is a single node,
203
203
one of the :ref: `expression types <ast-expressions >`.
204
204
205
205
.. doctest ::
@@ -214,7 +214,7 @@ Root nodes
214
214
A single :ref: `interactive input <interactive >`, like in :ref: `tut-interac `.
215
215
Node type generated by :func: `ast.parse ` when *mode * is ``"single" ``.
216
216
217
- * body * is a :class: `list ` of :ref: `statement nodes <ast-statements >`.
217
+ `` body `` is a :class: `list ` of :ref: `statement nodes <ast-statements >`.
218
218
219
219
.. doctest ::
220
220
@@ -243,9 +243,9 @@ Root nodes
243
243
# type: (int, int) -> int
244
244
return a + b
245
245
246
- * argtypes * is a :class: `list ` of :ref: `expression nodes <ast-expressions >`.
246
+ `` argtypes `` is a :class: `list ` of :ref: `expression nodes <ast-expressions >`.
247
247
248
- * returns * is a single :ref: `expression node <ast-expressions >`.
248
+ `` returns `` is a single :ref: `expression node <ast-expressions >`.
249
249
250
250
.. doctest ::
251
251
@@ -1771,9 +1771,9 @@ aliases.
1771
1771
1772
1772
.. class :: TypeVar(name, bound, default_value)
1773
1773
1774
- A :class: `typing.TypeVar `. * name * is the name of the type variable.
1775
- * bound * is the bound or constraints, if any. If * bound * is a :class: `Tuple `,
1776
- it represents constraints; otherwise it represents the bound. * default_value *
1774
+ A :class: `typing.TypeVar `. `` name `` is the name of the type variable.
1775
+ `` bound `` is the bound or constraints, if any. If `` bound `` is a :class: `Tuple `,
1776
+ it represents constraints; otherwise it represents the bound. `` default_value ``
1777
1777
is the default value; if the :class: `!TypeVar ` has no default, this
1778
1778
attribute will be set to ``None ``.
1779
1779
@@ -1801,8 +1801,8 @@ aliases.
1801
1801
1802
1802
.. class :: ParamSpec(name, default_value)
1803
1803
1804
- A :class: `typing.ParamSpec `. * name * is the name of the parameter specification.
1805
- * default_value * is the default value; if the :class: `!ParamSpec ` has no default,
1804
+ A :class: `typing.ParamSpec `. `` name `` is the name of the parameter specification.
1805
+ `` default_value `` is the default value; if the :class: `!ParamSpec ` has no default,
1806
1806
this attribute will be set to ``None ``.
1807
1807
1808
1808
.. doctest ::
@@ -1836,8 +1836,8 @@ aliases.
1836
1836
1837
1837
.. class :: TypeVarTuple(name, default_value)
1838
1838
1839
- A :class: `typing.TypeVarTuple `. * name * is the name of the type variable tuple.
1840
- * default_value * is the default value; if the :class: `!TypeVarTuple ` has no
1839
+ A :class: `typing.TypeVarTuple `. `` name `` is the name of the type variable tuple.
1840
+ `` default_value `` is the default value; if the :class: `!TypeVarTuple ` has no
1841
1841
default, this attribute will be set to ``None ``.
1842
1842
1843
1843
.. doctest ::
0 commit comments