From: Tan90909090 Date: Wed, 16 Apr 2025 19:23:13 +0000 (+0900) Subject: gh-132608: Fix a sample code coloring for ast.While (#132609) X-Git-Tag: v3.14.0b1~443 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5512a2498d0d99197f4f12b37d004fdf6deec85;p=thirdparty%2FPython%2Fcpython.git gh-132608: Fix a sample code coloring for ast.While (#132609) Add missing '>' in prompt. --- 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: