Hi kilon,
The tests instance variable is linked to the python grammar: top level items in an expression are probably tests, and, through the grammar, tests can be just atoms.
So the tests instance variable doesn't means it is testing anything :)
Thierry
Le 30 janv. 2015 09:23, "kilon alios" <kilon.alios@gmail.com> a ��crit :Ok so I tried to parse a very simple list like[ 67,12342,5 ]using Parse and explore , I can find these number by following this AST (for example 67)PyFileInputNode>>statements: -> 1: PySimpleStmNode>>stmts: -> 1: PyExprStmtNode>>tests: ->1: PyPowerNode>>atom: -> PyAtomNode>>list: -> 1: PyPowerNode>>atom: -> PyPowerNode>>numberToken -> numberToken>>value -> 67quite a structure, but the one thing I dont get is "tests" , why "tests" ?��Does it tests something and if yes what ?