Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7600504
By: phtj

Hi all,

In the example below, code completion stops working inside a function. I am
not sure why this is - is it a bug?

class B(object):
    def test_b(self):
        pass

class A(object):
    def __init__(self):
        self.b = B()
    
x = A()
x.b.test_b()  #code completion works fine here...

def test3():
    y = A()
    y.b.|   #code completion does not work here...

Cheers
Patrick

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to