INNER CODE UNIT · Python

__init__

Squirrel-Engine/Squirrel-Engine · googletest/googlemock/scripts/pump.py:91

  def __init__(self, line=-1, column=-1):
    self.line = line
    self.column = column

  def __eq__(self, rhs):
    return self.line == rhs.line and self.column == rhs.column

  def __ne__(self, rhs):
    return not self == rhs

  def __lt__(self, rhs):
    return self.line < rhs.line or (
        self.line == rhs.line and self.column < rhs.column)

  def __le__(self, rhs):
    return self < rhs or self == rhs

  def __gt__(self, rhs):

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…