pydev code completion problem

Lukasz Mierzejewski lmierzej at o2.pl
Sun Oct 14 15:45:07 EDT 2007


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?



More information about the Python-list mailing list