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 - Code completion for private methods
Summary: Code completion for private methods
Status: RESOLVED FIXED
Alias: None
Product: python
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Torbjorn Norbye
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-03-23 16:32 UTC by nbphpuser
Modified: 2009-05-12 22:33 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 :)