[Pydev-cvs] org.python.pydev.parser/tests/org/python/pydev/parser/fastparser FastParserTest.java,
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-09-27 19:59:07
|
Update of /cvsroot/pydev/org.python.pydev.parser/tests/org/python/pydev/parser/fastparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20472/tests/org/python/pydev/parser/fastparser Modified Files: FastParserTest.java Log Message: Synching to latest changes: Pydev <ul> <li><strong>Editor</strong>: Cursor settings no longer overridden</li> <li><strong>Code-completion</strong>: If __all__ is defined with runtime elements (and not only in a single assign statement), it's ignored for code-completion purposes</li> <li><strong>Debugger</strong>: Pythonpath the same in debug and regular modes (sys.path[0] is the same directory as the file run)</li> <li><strong>Debugger</strong>: Persist choices done in the debugger when files from the debugger are not found</li> <li><strong>Interpreter config</strong>: "email" automatically added to the "forced builtins"</li> <li><strong>Parser</strong>: Correctly recognizing absolute import with 3 or more levels</li> <li><strong>Syntax check</strong>: Option to do only on active editor</li> </ul> Also: tabs changed for spaces Index: FastParserTest.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.parser/tests/org/python/pydev/parser/fastparser/FastParserTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FastParserTest.java 3 May 2008 13:37:39 -0000 1.2 --- FastParserTest.java 27 Sep 2008 19:58:44 -0000 1.3 *************** *** 54,68 **** Document doc = new Document(); doc.set("class Foo:\n" + ! "\n" + ! "class Bar(object):\n" + ! "\n" + ! " class My\n" + ! "'''class Dont\n" + ! "class Dont2\n" + ! "\n" + ! "'''\n" + ! "class My2:\n" + ! "" + ! ""); List<stmtType> all = FastParser.parseClassesAndFunctions(doc); --- 54,68 ---- Document doc = new Document(); doc.set("class Foo:\n" + ! "\n" + ! "class Bar(object):\n" + ! "\n" + ! " class My\n" + ! "'''class Dont\n" + ! "class Dont2\n" + ! "\n" + ! "'''\n" + ! "class My2:\n" + ! "" + ! ""); List<stmtType> all = FastParser.parseClassesAndFunctions(doc); |