[Pydev-cvs] org.python.pydev/PySrc/ThirdParty/brm/bike/parsing newstuff.py, 1.1, 1.2 parserutils.py
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-07-06 21:56:44
|
Update of /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/parsing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6994/PySrc/ThirdParty/brm/bike/parsing Modified Files: newstuff.py parserutils.py load.py pathutils.py fastparser.py fastparserast.py Log Message: Added tags to ignore pydev code analysis. Index: fastparserast.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/parsing/fastparserast.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fastparserast.py 14 Sep 2004 17:42:07 -0000 1.1 --- fastparserast.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore from __future__ import generators from parserutils import generateLogicalLines, maskStringsAndComments, maskStringsAndRemoveComments Index: pathutils.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/parsing/pathutils.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pathutils.py 14 Sep 2004 17:42:07 -0000 1.1 --- pathutils.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore # A some of this code is take from Pythius - Index: parserutils.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/parsing/parserutils.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** parserutils.py 1 Dec 2004 16:59:13 -0000 1.2 --- parserutils.py 6 Jul 2008 21:56:51 -0000 1.3 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore from __future__ import generators import re Index: newstuff.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/parsing/newstuff.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** newstuff.py 14 Sep 2004 17:42:07 -0000 1.1 --- newstuff.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore from __future__ import generators # Holding module for scaffolding needed to transition parsing package Index: fastparser.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/parsing/fastparser.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fastparser.py 14 Sep 2004 17:42:07 -0000 1.1 --- fastparser.py 6 Jul 2008 21:56:51 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore #!/usr/bin/env python from bike.parsing.fastparserast import * Index: load.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/PySrc/ThirdParty/brm/bike/parsing/load.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** load.py 1 Dec 2004 16:59:13 -0000 1.2 --- load.py 6 Jul 2008 21:56:51 -0000 1.3 *************** *** 1,2 **** --- 1,3 ---- + #@PydevCodeAnalysisIgnore from bike.globals import * import os |