From: Terry Jan Reedy Date: Mon, 18 Jul 2022 17:24:18 +0000 (-0400) Subject: Fix incorrect double indent in ast doc (#94976) X-Git-Tag: v3.12.0a1~925 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a25a803c4c452c70da11be3e80004b47646bff4c;p=thirdparty%2FPython%2Fcpython.git Fix incorrect double indent in ast doc (#94976) Warning directive indent was 4 rather than 3 spaces. --- diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index 6a9c23a81867..9aa545d82007 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -1951,7 +1951,7 @@ and classes for traversing abstract syntax trees: If source contains a null character ('\0'), :exc:`ValueError` is raised. - .. warning:: + .. warning:: Note that successfully parsing source code into an AST object doesn't guarantee that the source code provided is valid Python code that can be executed as the compilation step can raise further :exc:`SyntaxError`