Python3 语法规范中的 NAME 是什么

What is NAME in the Python3 grammar specification

我希望为开源 Python 词法分析器做出贡献。我正在查看官方 Python3 语法规范:https://docs.python.org/3/reference/grammar.html

但是,'NAME'的引用很多。例如:

dotted_name:
    | dotted_name '.' NAME 
    | NAME

我知道它类似于标识符,但我在哪里可以找到更多详细信息?

NAME 是什么?

这些常量表示解析树叶节点的数值(终端标记)。在 token — Constants used with Python parse treesCPython 源代码指南中查看更多信息