We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd964c commit deea255Copy full SHA for deea255
clang/bindings/python/clang/cindex.py
@@ -335,7 +335,9 @@ def is_in_system_header(self):
335
return conf.lib.clang_Location_isInSystemHeader(self) # type: ignore [no-any-return]
336
337
def __eq__(self, other):
338
- return isinstance(other, SourceLocation) and conf.lib.clang_equalLocations(self, other)
+ return isinstance(other, SourceLocation) and conf.lib.clang_equalLocations(
339
+ self, other
340
+ )
341
342
def __ne__(self, other):
343
return not self.__eq__(other)
0 commit comments