From f5512a2498d0d99197f4f12b37d004fdf6deec85 Mon Sep 17 00:00:00 2001 From: Tan90909090 Date: Thu, 17 Apr 2025 04:23:13 +0900 Subject: [PATCH] gh-132608: Fix a sample code coloring for ast.While (#132609) Add missing '>' in prompt. --- Doc/library/ast.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index fd901e232855..1a04d42e5f5d 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -1190,7 +1190,7 @@ Control flow .. doctest:: - >> print(ast.dump(ast.parse(""" + >>> print(ast.dump(ast.parse(""" ... while x: ... ... ... else: -- 2.47.3