From 50f5db21fb5cbf3cb2e17b083ff410aed38f0066 Mon Sep 17 00:00:00 2001 From: Hunter Hogan Date: Sun, 27 Apr 2025 09:25:00 -0500 Subject: [PATCH] Fix formatting in module docstring for `ast` https://github.com/python/cpython/issues/133046 --- Lib/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ast.py b/Lib/ast.py index 507fec5f2d3890..9885f0ff67bb53 100644 --- a/Lib/ast.py +++ b/Lib/ast.py @@ -1,6 +1,6 @@ """ ast - ~~~ + --- The `ast` module helps Python applications to process trees of the Python abstract syntax grammar. The abstract syntax itself might change with