| Class used to parse the source code of a Python file. 
        
            | Methods |  |  
        | addToken parse
 tokeneater
 
 |  
            |  | addToken |  
        | 
addToken (
        self,
        toktype,
        toktext,
        srow,
        scol,
        line,
        )
Private method used to add a token to our list of tokens.        Arguments
            toktypethe type of the token (int)            toktextthe text of the token (string)            srowstarting row of the token (int)            scolstarting column of the token (int)            linelogical line the token was found (string) |  
            |  | parse |  
        | 
parse ( self,  text )
 Public method used to parse the source code.        Arguments
            textthe source code as read from a Python source file |  
            |  | tokeneater |  
        | 
tokeneater (
        self,
        toktype,
        toktext,
        (,
        (,
        line,
        )
Private method called by tokenize.tokenize.        Arguments
            toktypethe type of the token (int)            toktextthe text of the token (string)            srowstarting row of the token (int)            scolstarting column of the token (int)            erowending row of the token (int)            ecolending column of the token (int)            linelogical line the token was found (string) |  |