python (3.11.7)
    eFm                        d Z dZddlZddlmZ dZi ad Z G d de          Z	 G d	 d
e	          Z
 G d de	          Zd
 Z G d de          Z
 G d de
          Z G d de
          Z G d de
          Z G d de
          Zd ZdS )z
Python parse tree definitions.
This is a very concrete parse tree; we need to keep every token and
even the comments and whitespace between tokens.
There's also a pattern matching implementation here.
z#Guido van Rossum <guido@python.org>