Hi, I need help with pydev code completion...

Let's assume that we have something like this:

class One:
        def fun(self):
        return 1

class Two:
        li = []
        li.append(One())

        one = li[0]
        print one.fun()

        one2 = li.pop()
        print one2.fun()

        one3 = One()    
        print one3.fun()

Only for 'one3' variable code completion is working fine (as expected it
show fun()).
For 'one' code completion shows something (but not fun()).
For 'one2' code completion shows nothing :-(

I use Eclipse 3.3.1 with PyDev 1.3.9 on Ubuntu 7.04.

Can anyone confirm or deny this behavior of PyDev?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to