From f3695bfacfa51e0e8fb47c7e406152a3f9cd3af2 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Wed, 6 Jan 2016 21:26:53 -0800 Subject: [PATCH] Issue16544 - Add a link to an external documentation resource in ast module docs. --- Doc/library/ast.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index 5373acd57b0..8c3b7e4ce4e 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -249,3 +249,8 @@ and classes for traversing abstract syntax trees: wanted *annotate_fields* must be set to ``False``. Attributes such as line numbers and column offsets are not dumped by default. If this is wanted, *include_attributes* can be set to ``True``. + +.. seealso:: + + `Green Tree Snakes `_, an external documentation resource, has good + details on working with Python ASTs.