summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorTobias Grosser <grosser@fim.uni-passau.de>2013-01-20 00:42:16 +0000
committerTobias Grosser <grosser@fim.uni-passau.de>2013-01-20 00:42:16 +0000
commitbba99ad6e28e0a91bbfb1137d52a5d7cb94c72d3 (patch)
tree2cba8e7c00757b59d56e2d053e2d9e8321ebee3d /bindings
parent99a5af0088b6340540912921cd0008ac75051a33 (diff)
[cindex.py]: Use spaces instead of tabs
The tabs slipped in accidentally. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172934 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/clang/cindex.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py
index 446d80d176..e683f5ba72 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -1693,8 +1693,8 @@ class CompletionChunk:
@CachedProperty
def spelling(self):
- if self.__kindNumber in SpellingCache:
- return SpellingCache[self.__kindNumber]
+ if self.__kindNumber in SpellingCache:
+ return SpellingCache[self.__kindNumber]
return conf.lib.clang_getCompletionChunkText(self.cs, self.key).spelling
# We do not use @CachedProperty here, as the manual implementation is
@@ -1704,7 +1704,7 @@ class CompletionChunk:
def __kindNumber(self):
if self.__kindNumberCache == -1:
self.__kindNumberCache = \
- conf.lib.clang_getCompletionChunkKind(self.cs, self.key)
+ conf.lib.clang_getCompletionChunkKind(self.cs, self.key)
return self.__kindNumberCache
@CachedProperty