diff options
author | Bénédikt Tran <10796600+picnixz@users.noreply.github.com> | 2024-06-04 14:24:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 14:24:22 (GMT) |
commit | ff1857d6ed52fab8ef1507c289d89ee545ca6478 (patch) | |
tree | b3a00a6d782aa05155c26bd46d095720dd84e3e5 /Doc/library/symtable.rst | |
parent | e69d068ad0bd6a25434ea476a647b635da4d82bb (diff) | |
download | cpython-ff1857d6ed52fab8ef1507c289d89ee545ca6478.zip cpython-ff1857d6ed52fab8ef1507c289d89ee545ca6478.tar.gz cpython-ff1857d6ed52fab8ef1507c289d89ee545ca6478.tar.bz2 |
gh-120029: export `DEF_TYPE_PARAM` compiler flag (#120028)
Diffstat (limited to 'Doc/library/symtable.rst')
-rw-r--r-- | Doc/library/symtable.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst index 0480502..e17a33f 100644 --- a/Doc/library/symtable.rst +++ b/Doc/library/symtable.rst @@ -151,6 +151,10 @@ Examining Symbol Tables Return ``True`` if the symbol is a parameter. + .. method:: is_type_parameter() + + Return ``True`` if the symbol is a type parameter. + .. method:: is_global() Return ``True`` if the symbol is global. |