src/google/appengine/_internal/antlr3/streams.py [1049:1064]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if len(args) == 2:
      programName = self.DEFAULT_PROGRAM_NAME
      index = args[0]
      text = args[1]

    elif len(args) == 3:
      programName = args[0]
      index = args[1]
      text = args[2]

    else:
      raise TypeError("Invalid arguments")

    if isinstance(index, Token):

      index = index.index
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/google/appengine/_internal/antlr3/streams.py [1070:1085]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if len(args) == 2:
      programName = self.DEFAULT_PROGRAM_NAME
      index = args[0]
      text = args[1]

    elif len(args) == 3:
      programName = args[0]
      index = args[1]
      text = args[2]

    else:
      raise TypeError("Invalid arguments")

    if isinstance(index, Token):

      index = index.index
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



