Skip to content

Commit dcab244

Browse files
committed
Fix doctest error
1 parent 17f5989 commit dcab244

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/ast.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,12 +338,12 @@ Literals
338338
body=TemplateStr(
339339
values=[
340340
Interpolation(
341-
value=Name(id='name'),
341+
value=Name(id='name', ctx=Load()),
342342
str='name',
343343
conversion=-1),
344344
Constant(value=' finished '),
345345
Interpolation(
346-
value=Name(id='place'),
346+
value=Name(id='place', ctx=Load()),
347347
str='place',
348348
conversion=-1,
349349
format_spec=JoinedStr(

0 commit comments

Comments
 (0)