diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-03-03 18:25:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 18:25:41 (GMT) |
commit | 62e3b6370cf9aa990485d9c7c3ea3f6f150daa47 (patch) | |
tree | fc82fca79ee64db97b56c87ad3ccc1a3f760ae3f | |
parent | 44e580f448016b86807465a186d03d9074e2b589 (diff) | |
download | cpython-62e3b6370cf9aa990485d9c7c3ea3f6f150daa47.zip cpython-62e3b6370cf9aa990485d9c7c3ea3f6f150daa47.tar.gz cpython-62e3b6370cf9aa990485d9c7c3ea3f6f150daa47.tar.bz2 |
Add an attribution to the Green Tree Snakes in the AST docs (GH-24727)
-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 aaedfbe..b5e1be8 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -140,6 +140,11 @@ Node classes In the meantime, instantiating them will return an instance of a different class. +.. note:: + The descriptions of the specific node classes displayed here + were initially adapted from the fantastic `Green Tree + Snakes <https://greentreesnakes.readthedocs.io/en/latest/>`__ project and + all its contributors. Literals ^^^^^^^^ |