In this list I found symbols of Python grammar, which contains in parse tree of Python source.
For example if I use
parser.st2tuple(parser.suite(open(SRC_FILENAME).read()))
for some source file SRC_FILENAME
, I get a parse tree with following format:
(307,
(308,
(309,
(312,
(313,
(314,
(315,
(316,
(317,
(318,
(319,
(320,
(1,
'Type'))))))))))))))))),
(8,
')'))))))))))))))))),
(8, ')')))))))))))))))))),
(4, ''))),
(4, ''),
(0, ''))
But all Python grammar constants in list has numbers greater than 256. Withal, there are many numbers in my tree, which less than 256.
So where can I find the description of symbols, which has numbers less than 256?