LionHeart123 / pyscripter

Automatically exported from code.google.com/p/pyscripter
0 stars 0 forks source link

No code-completion on first param of class method. #631

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. write a classmethod and reference the first parameter, e.g.

class Test(object):

    __IM_A_CLASS_FIELD = 'SEE, I TOLD YOU!'

    @classmethod
    def im_a_class_method(cls):
        return cls.                 # <--THIS LINE

What is the expected output? What do you see instead?
It would be cool if the class's autocomplete list showed up, but nothing shows 
up.

What version of the product are you using? On what operating system?
2.5.2 Beta win7 home premium x64

Original issue reported on code.google.com by theman.t...@gmail.com on 27 Mar 2012 at 12:09