@@ -173,9 +173,9 @@ Root nodes
173
173
A Python module, as with :ref: `file input <file-input >`.
174
174
Node type generated by :func: `ast.parse ` in the default ``"exec" `` *mode *.
175
175
176
- * body * is a :class: `list ` of the module's :ref: `ast-statements `.
176
+ `` body `` is a :class: `list ` of the module's :ref: `ast-statements `.
177
177
178
- * type_ignores * is a :class: `list ` of the module's type ignore comments;
178
+ `` type_ignores `` is a :class: `list ` of the module's type ignore comments;
179
179
see :func: `ast.parse ` for more details.
180
180
181
181
.. doctest ::
@@ -194,7 +194,7 @@ Root nodes
194
194
A single Python :ref: `expression input <expression-input >`.
195
195
Node type generated by :func: `ast.parse ` when *mode * is ``"eval" ``.
196
196
197
- * body * is a single node,
197
+ `` body `` is a single node,
198
198
one of the :ref: `expression types <ast-expressions >`.
199
199
200
200
.. doctest ::
@@ -209,7 +209,7 @@ Root nodes
209
209
A single :ref: `interactive input <interactive >`, like in :ref: `tut-interac `.
210
210
Node type generated by :func: `ast.parse ` when *mode * is ``"single" ``.
211
211
212
- * body * is a :class: `list ` of :ref: `statement nodes <ast-statements >`.
212
+ `` body `` is a :class: `list ` of :ref: `statement nodes <ast-statements >`.
213
213
214
214
.. doctest ::
215
215
@@ -238,9 +238,9 @@ Root nodes
238
238
# type: (int, int) -> int
239
239
return a + b
240
240
241
- * argtypes * is a :class: `list ` of :ref: `expression nodes <ast-expressions >`.
241
+ `` argtypes `` is a :class: `list ` of :ref: `expression nodes <ast-expressions >`.
242
242
243
- * returns * is a single :ref: `expression node <ast-expressions >`.
243
+ `` returns `` is a single :ref: `expression node <ast-expressions >`.
244
244
245
245
.. doctest ::
246
246
@@ -1766,9 +1766,9 @@ aliases.
1766
1766
1767
1767
.. class :: TypeVar(name, bound, default_value)
1768
1768
1769
- A :class: `typing.TypeVar `. * name * is the name of the type variable.
1770
- * bound * is the bound or constraints, if any. If * bound * is a :class: `Tuple `,
1771
- it represents constraints; otherwise it represents the bound. * default_value *
1769
+ A :class: `typing.TypeVar `. `` name `` is the name of the type variable.
1770
+ `` bound `` is the bound or constraints, if any. If `` bound `` is a :class: `Tuple `,
1771
+ it represents constraints; otherwise it represents the bound. `` default_value ``
1772
1772
is the default value; if the :class: `!TypeVar ` has no default, this
1773
1773
attribute will be set to ``None ``.
1774
1774
@@ -1796,8 +1796,8 @@ aliases.
1796
1796
1797
1797
.. class :: ParamSpec(name, default_value)
1798
1798
1799
- A :class: `typing.ParamSpec `. * name * is the name of the parameter specification.
1800
- * default_value * is the default value; if the :class: `!ParamSpec ` has no default,
1799
+ A :class: `typing.ParamSpec `. `` name `` is the name of the parameter specification.
1800
+ `` default_value `` is the default value; if the :class: `!ParamSpec ` has no default,
1801
1801
this attribute will be set to ``None ``.
1802
1802
1803
1803
.. doctest ::
@@ -1831,8 +1831,8 @@ aliases.
1831
1831
1832
1832
.. class :: TypeVarTuple(name, default_value)
1833
1833
1834
- A :class: `typing.TypeVarTuple `. * name * is the name of the type variable tuple.
1835
- * default_value * is the default value; if the :class: `!TypeVarTuple ` has no
1834
+ A :class: `typing.TypeVarTuple `. `` name `` is the name of the type variable tuple.
1835
+ `` default_value `` is the default value; if the :class: `!TypeVarTuple ` has no
1836
1836
default, this attribute will be set to ``None ``.
1837
1837
1838
1838
.. doctest ::
0 commit comments