We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19f24b6 commit 69a9579Copy full SHA for 69a9579
pythonparser/source.py
@@ -152,8 +152,9 @@ def __str__(self):
152
"""
153
Returns a Clang-style string representation of the beginning of this range.
154
155
- return "%s:%d:%d-%d" % (self.source_buffer.name,
156
- self.line(), self.column() + 1, self.end().column() + 1)
+ return "%s:%d:%d-%d:%d" % (self.source_buffer.name,
+ self.line(), self.column() + 1,
157
+ self.end().line(), self.end().column() + 1)
158
159
def __eq__(self, other):
160
0 commit comments