From 84a999b4bdfa85984bd34c17148003128bcdc0f3 Mon Sep 17 00:00:00 2001 From: Tan Date: Thu, 17 Apr 2025 03:30:58 +0900 Subject: [PATCH] Fix a sample code's coloring for ast.While --- 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 fd901e232855b5..1a04d42e5f5d7e 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: