[cfe-commits] r159810 - /cfe/trunk/bindings/python/clang/cindex.py
Arnaud A. de Grandmaison
arnaud.adegm at gmail.com
Fri Jul 6 01:22:05 PDT 2012
Author: aadg
Date: Fri Jul 6 03:22:05 2012
New Revision: 159810
URL: http://llvm.org/viewvc/llvm-project?rev=159810&view=rev
Log:
[cindex.py] Fix erroneous comment for CompileCommands
Modified:
cfe/trunk/bindings/python/clang/cindex.py
Modified: cfe/trunk/bindings/python/clang/cindex.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/bindings/python/clang/cindex.py?rev=159810&r1=159809&r2=159810&view=diff
==============================================================================
--- cfe/trunk/bindings/python/clang/cindex.py (original)
+++ cfe/trunk/bindings/python/clang/cindex.py Fri Jul 6 03:22:05 2012
@@ -2140,9 +2140,7 @@
Get an iterable object providing each argument in the
command line for the compiler invocation as a _CXString.
- Invariants :
- - the first argument is the compiler executable
- - the last argument is the file being compiled
+ Invariant : the first argument is the compiler executable
"""
length = CompileCommand_getNumArgs(self.cmd)
for i in xrange(length):
More information about the cfe-commits
mailing list