Update of /cvsroot/pydev/org.python.pydev/tests_completions/org/python/pydev/editor/codecompletion
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6943/tests_completions/org/python/pydev/editor/codecompletion
Modified Files:
PythonCompletionWithoutBuiltinsTest.java
Log Message:
<li><strong>Pydev debugger</strong>Workaround for python bug when filenames don't have absolute paths correctly generated</li>
<li><strong>Pydev code-completion</strong>Wild import will only show tokens defined in __all__ (if it's available)</li>
<li><strong>Interactive console</strong>: Fixed problem when more attempts to connect were needed</li>
<li><strong>Interactive console</strong>Fixed console integration problem with other plugins because of interfaces not properly implemented</li>
<li><strong>Code Formatter</strong>: Exponentials handled correctly</li>
<li><strong>Launching</strong>: Unit-test and code-coverage may launch multiple folders/files at once</li>
<li><strong>Code coverage</strong>: Number format exception no longer given when trying to show lines not executed in the editor and all lines are executed</li>
Index: PythonCompletionWithoutBuiltinsTest.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/tests_completions/org/python/pydev/editor/codecompletion/PythonCompletionWithoutBuiltinsTest.java,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** PythonCompletionWithoutBuiltinsTest.java 13 Aug 2008 21:12:17 -0000 1.21
--- PythonCompletionWithoutBuiltinsTest.java 17 Aug 2008 00:26:46 -0000 1.22
***************
*** 41,45 ****
PythonCompletionWithoutBuiltinsTest test = new PythonCompletionWithoutBuiltinsTest();
test.setUp();
! test.testClsCompletion();
test.tearDown();
System.out.println("Finished");
--- 41,45 ----
PythonCompletionWithoutBuiltinsTest test = new PythonCompletionWithoutBuiltinsTest();
test.setUp();
! test.testWildImportWithAll();
test.tearDown();
System.out.println("Finished");
***************
*** 1117,1120 ****
--- 1117,1129 ----
+ public void testWildImportWithAll() throws Exception {
+ String s =
+ "from extendable.all_check import *\n" +
+ "This";
+
+ requestCompl(s, new String[] {"ThisGoes", "ThisGoesToo"});
+ }
+
+
}
|