@@ -157,9 +157,9 @@ Root nodes
157
157
A Python module, as with :ref: `file input <file-input >`.
158
158
Node type generated by :func: `ast.parse ` in the default ``"exec" `` *mode *.
159
159
160
- * body * is a :class: `list ` of the module's :ref: `ast-statements `.
160
+ `` body `` is a :class: `list ` of the module's :ref: `ast-statements `.
161
161
162
- * type_ignores * is a :class: `list ` of the module's type ignore comments;
162
+ `` type_ignores `` is a :class: `list ` of the module's type ignore comments;
163
163
see :func: `ast.parse ` for more details.
164
164
165
165
.. doctest ::
@@ -179,7 +179,7 @@ Root nodes
179
179
A single Python :ref: `expression input <expression-input >`.
180
180
Node type generated by :func: `ast.parse ` when *mode * is ``"eval" ``.
181
181
182
- * body * is a single node,
182
+ `` body `` is a single node,
183
183
one of the :ref: `expression types <ast-expressions >`.
184
184
185
185
.. doctest ::
@@ -194,7 +194,7 @@ Root nodes
194
194
A single :ref: `interactive input <interactive >`, like in :ref: `tut-interac `.
195
195
Node type generated by :func: `ast.parse ` when *mode * is ``"single" ``.
196
196
197
- * body * is a :class: `list ` of :ref: `statement nodes <ast-statements >`.
197
+ `` body `` is a :class: `list ` of :ref: `statement nodes <ast-statements >`.
198
198
199
199
.. doctest ::
200
200
@@ -223,9 +223,9 @@ Root nodes
223
223
# type: (int, int) -> int
224
224
return a + b
225
225
226
- * argtypes * is a :class: `list ` of :ref: `expression nodes <ast-expressions >`.
226
+ `` argtypes `` is a :class: `list ` of :ref: `expression nodes <ast-expressions >`.
227
227
228
- * returns * is a single :ref: `expression node <ast-expressions >`.
228
+ `` returns `` is a single :ref: `expression node <ast-expressions >`.
229
229
230
230
.. doctest ::
231
231
0 commit comments