This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 160894

Summary: Code completion for private methods
Product: python Reporter: nbphpuser <nbphpuser>
Component: EditorAssignee: Torbjorn Norbye <tor>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P2    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nbphpuser 2009-03-23 16:32:43 UTC
Hi,

inside of class code completion doesn't work for private methods.
CP will not suggest __somePrivate in example below

class SomeOutput:

   def __init__(self):
       pass
   
   def __somePrivate(self):
       pass

   def nonPrivate(self):
        #for the next line CP will not suggest __somePrivate
        self.__
Comment 1 nbphpuser 2009-05-12 14:21:12 UTC
Any chance for fixing this issue?

Pet
Comment 2 Torbjorn Norbye 2009-05-12 21:20:20 UTC
Fixed in changeset bcb9afea4792.
Comment 3 nbphpuser 2009-05-12 22:33:48 UTC
Thank you very much! Looks good :)