diff options
-rw-r--r-- | bindings/python/clang/cindex.py | 2 | ||||
-rw-r--r-- | bindings/python/tests/cindex/test_cdb.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py index a3da4217de..23c1edeb44 100644 --- a/bindings/python/clang/cindex.py +++ b/bindings/python/clang/cindex.py @@ -2206,7 +2206,7 @@ class CompilationDatabase(ClangObject): def getCompileCommands(self, filename): """ Get an iterable object providing all the CompileCommands available to - build filename. Raise KeyError if filename is not found in the database. + build filename. Returns None if filename is not found in the database. """ return CompilationDatabase_getCompileCommands(self, filename) diff --git a/bindings/python/tests/cindex/test_cdb.py b/bindings/python/tests/cindex/test_cdb.py index 84ac1f87d5..38de4b1c14 100644 --- a/bindings/python/tests/cindex/test_cdb.py +++ b/bindings/python/tests/cindex/test_cdb.py @@ -22,7 +22,7 @@ def test_create(): cdb = CompilationDatabase.fromDirectory(kInputsDir) def test_lookup_fail(): - """Check an assertion is raised when file lookup failed""" + """Check file lookup failure""" cdb = CompilationDatabase.fromDirectory(kInputsDir) assert cdb.getCompileCommands('file_do_not_exist.cpp') == None |