diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-01-07 05:26:53 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-01-07 05:26:53 (GMT) |
commit | f3695bfacfa51e0e8fb47c7e406152a3f9cd3af2 (patch) | |
tree | 40a2c9c9342745031d641a70b7b20acec6912fad | |
parent | b1360543e53b36e1a6833fee47caeeaea40aa26a (diff) | |
download | cpython-f3695bfacfa51e0e8fb47c7e406152a3f9cd3af2.zip cpython-f3695bfacfa51e0e8fb47c7e406152a3f9cd3af2.tar.gz cpython-f3695bfacfa51e0e8fb47c7e406152a3f9cd3af2.tar.bz2 |
Issue16544 - Add a link to an external documentation resource in ast module docs.
-rw-r--r-- | Doc/library/ast.rst | 5 |
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. |