From db7ad1c89f8b8f0319ec2f3a20f2f3c226a406ed Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 16 Apr 2025 22:02:39 +0200 Subject: [PATCH] [3.13] gh-132608: Fix a sample code coloring for ast.While (GH-132609) (#132612) --- 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 ce261abc2a34..570ba7989c11 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -1185,7 +1185,7 @@ Control flow .. doctest:: - >> print(ast.dump(ast.parse(""" + >>> print(ast.dump(ast.parse(""" ... while x: ... ... ... else: -- 2.47.3