diff options
author | Brandt Bucher <brandtbucher@gmail.com> | 2020-03-03 22:25:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 22:25:44 (GMT) |
commit | be501ca2419a91546dea85ef4f36945545458589 (patch) | |
tree | 75288eb978f78b97d2da5b2a052b9908531066f3 /Include/node.h | |
parent | 116fd4af7370706d0d99ac7c70541ef965672d4e (diff) | |
download | cpython-be501ca2419a91546dea85ef4f36945545458589.zip cpython-be501ca2419a91546dea85ef4f36945545458589.tar.gz cpython-be501ca2419a91546dea85ef4f36945545458589.tar.bz2 |
bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570)
Diffstat (limited to 'Include/node.h')
-rw-r--r-- | Include/node.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/node.h b/Include/node.h index 2b39074..ca24f28 100644 --- a/Include/node.h +++ b/Include/node.h @@ -31,7 +31,6 @@ PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n); #define NCH(n) ((n)->n_nchildren) #define CHILD(n, i) (&(n)->n_child[i]) -#define RCHILD(n, i) (CHILD(n, NCH(n) + i)) #define TYPE(n) ((n)->n_type) #define STR(n) ((n)->n_str) #define LINENO(n) ((n)->n_lineno) |