[Pydev-cvs] org.python.pydev/PySrc/ThirdParty/brm/bike/refactor rename.py, 1.1, 1.2 inlineVariable.
Brought to you by:
fabioz
Update of /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/refactor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6994/PySrc/ThirdParty/brm/bike/refactor Modified Files: rename.py inlineVariable.py extractVariable.py utils.py extractMethod.py moveToModule.py Log Message: Added tags to ignore pydev code analysis. Index: inlineVariable.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/refactor/inlineVariable.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** inlineVariable.py 14 Sep 2004 17:42:08 -0000 1.1 --- inlineVariable.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore from bike.query.findDefinition import findAllPossibleDefinitionsByCoords from bike.query.findReferences import findReferences Index: extractVariable.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/refactor/extractVariable.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** extractVariable.py 14 Sep 2004 17:42:08 -0000 1.1 --- extractVariable.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore from bike.parsing.parserutils import maskStringsAndRemoveComments from bike.transformer.undo import getUndoStack Index: moveToModule.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/refactor/moveToModule.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** moveToModule.py 14 Sep 2004 17:42:08 -0000 1.1 --- moveToModule.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore import bike.globals from bike.parsing.load import getSourceNode Index: extractMethod.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/refactor/extractMethod.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** extractMethod.py 14 Sep 2004 17:42:08 -0000 1.1 --- extractMethod.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore import re import compiler Index: utils.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/refactor/utils.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** utils.py 14 Sep 2004 17:42:08 -0000 1.1 --- utils.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore import re Index: rename.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/refactor/rename.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** rename.py 14 Sep 2004 17:42:08 -0000 1.1 --- rename.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore from bike.transformer.WordRewriter import WordRewriter from bike.query.findReferences import findReferencesIncludingDefn |