mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
When sorted by the relevance internal items (the one starting with underscore) now weighted down to appear at the end of completion list.
24 lines
158 B
Python
24 lines
158 B
Python
class A:
|
|
pass
|
|
|
|
class _A:
|
|
pass
|
|
|
|
class __A:
|
|
pass
|
|
|
|
class B:
|
|
pass
|
|
|
|
def f():
|
|
pass
|
|
|
|
def _f():
|
|
pass
|
|
|
|
def __f():
|
|
pass
|
|
|
|
def _g():
|
|
pass
|