Update of /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/query
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6994/PySrc/ThirdParty/brm/bike/query
Modified Files:
findReferences.py relationships.py findDefinition.py common.py
getReferencesToModule.py getTypeOf.py
Log Message:
Added tags to ignore pydev code analysis.
Index: findDefinition.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/query/findDefinition.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** findDefinition.py 14 Sep 2004 17:42:08 -0000 1.1
--- findDefinition.py 6 Jul 2008 21:56:51 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
from __future__ import generators
from bike.query.common import Match, MatchFinder, \
Index: findReferences.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/query/findReferences.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** findReferences.py 14 Jan 2008 10:06:03 -0000 1.2
--- findReferences.py 6 Jul 2008 21:56:51 -0000 1.3
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
from __future__ import generators
from bike.globals import *
Index: relationships.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/query/relationships.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** relationships.py 14 Sep 2004 17:42:08 -0000 1.1
--- relationships.py 6 Jul 2008 21:56:51 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
# queries to do with module/class/function relationships
from __future__ import generators
Index: common.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/query/common.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** common.py 17 Sep 2004 19:22:02 -0000 1.3
--- common.py 6 Jul 2008 21:56:51 -0000 1.4
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
from __future__ import generators
from bike.globals import *
Index: getReferencesToModule.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/query/getReferencesToModule.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** getReferencesToModule.py 14 Sep 2004 17:42:08 -0000 1.1
--- getReferencesToModule.py 6 Jul 2008 21:56:51 -0000 1.2
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
from __future__ import generators
from bike.query.common import Match, globalScanForMatches, getScopeForLine, MatchFinder
Index: getTypeOf.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/query/getTypeOf.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** getTypeOf.py 17 Sep 2004 19:22:03 -0000 1.2
--- getTypeOf.py 6 Jul 2008 21:56:51 -0000 1.3
***************
*** 1,2 ****
--- 1,3 ----
+ #@PydevCodeAnalysisIgnore
# getTypeOf(scope,fqn) and getTypeOfExpr(scope,ast)
|