summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2016-01-07 05:31:09 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2016-01-07 05:31:09 (GMT)
commitd68cc8416d0ec619c3c7af64aa0125730c268713 (patch)
tree62981352c4427d847548807bc7eb608dc858a2b7 /Doc/library
parentf08a308ebb9cbec07f2f15123c2238ab34ea65b8 (diff)
parent0deaf9ac3020ba094d01816b568b85fdc02c6da9 (diff)
downloadcpython-d68cc8416d0ec619c3c7af64aa0125730c268713.zip
cpython-d68cc8416d0ec619c3c7af64aa0125730c268713.tar.gz
cpython-d68cc8416d0ec619c3c7af64aa0125730c268713.tar.bz2
merge from 3.5
Issue16544 - Add a link to an external documentation resource in ast module docs.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/ast.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst
index 5373acd..8c3b7e4 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 <https://greentreesnakes.readthedocs.org/>`_, an external documentation resource, has good
+ details on working with Python ASTs.