diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-01-20 00:42:16 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-01-20 00:42:16 +0000 |
commit | 44d7b4f6bf56ee28e77003c7624d35d909a72538 (patch) | |
tree | b30906ec8902bdc740dfe991912f932f752f2585 /clang/bindings | |
parent | 3da6507c4128a5cf3894a5d6574c613ad673dabf (diff) | |
download | bcm5719-llvm-44d7b4f6bf56ee28e77003c7624d35d909a72538.tar.gz bcm5719-llvm-44d7b4f6bf56ee28e77003c7624d35d909a72538.zip |
[cindex.py]: Use spaces instead of tabs
The tabs slipped in accidentally.
llvm-svn: 172934
Diffstat (limited to 'clang/bindings')
-rw-r--r-- | clang/bindings/python/clang/cindex.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py index 446d80d176e..e683f5ba72a 100644 --- a/clang/bindings/python/clang/cindex.py +++ b/clang/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 |