Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/codecompletion
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11789/src/org/python/pydev/editor/codecompletion
Modified Files:
PyCodeCompletion.java
Log Message:
re-adds autoactivation for '('
Index: PyCodeCompletion.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/codecompletion/PyCodeCompletion.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PyCodeCompletion.java 11 Aug 2004 13:04:13 -0000 1.1
--- PyCodeCompletion.java 11 Aug 2004 17:44:16 -0000 1.2
***************
*** 66,70 ****
String s = new String();
File tmp = null;
!
try {
// get the inspect.py file from the package:
--- 66,70 ----
String s = new String();
File tmp = null;
! // System.out.println("DBG:autoComplete:theActivationToken: "+theActivationToken);
try {
// get the inspect.py file from the package:
***************
*** 85,90 ****
if (tmp == null) {
! System.out
! .println("DBG:bufferContent() null. No tip for you!!");
return theList;
}
--- 85,89 ----
if (tmp == null) {
! System.out.println("DBG:bufferContent() null. No tip for you!!");
return theList;
}
***************
*** 96,101 ****
.getInputStream()));
String str;
! while ((str = in.readLine()) != null) {
!
if (!str.startsWith("tip: ")){
continue;
--- 95,99 ----
.getInputStream()));
String str;
! while ((str = in.readLine()) != null) {
if (!str.startsWith("tip: ")){
continue;
|