mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 23:52:23 +07:00
No more private element filtering in CompletionVariantsProcessor, let's leave it for types.
12 lines
186 B
Python
12 lines
186 B
Python
class Test:
|
|
@classmethod
|
|
def foo(cls):
|
|
return cls._bar(), cls.__eg<caret>
|
|
|
|
@staticmethod
|
|
def _bar():
|
|
pass
|
|
|
|
@staticmethod
|
|
def __egg():
|
|
pass |