From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 16 Apr 2025 20:02:39 +0000 (+0200) Subject: [3.13] gh-132608: Fix a sample code coloring for ast.While (GH-132609) (#132612) X-Git-Tag: v3.13.4~261 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db7ad1c89f8b8f0319ec2f3a20f2f3c226a406ed;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-132608: Fix a sample code coloring for ast.While (GH-132609) (#132612) --- 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: