Files
Anton Bragin 9b5a4eb70d PY-3674 Completion items starting with underscore moved down
When sorted by the relevance internal items (the one starting with
underscore) now weighted down to appear at the end of completion list.
2018-04-03 10:58:31 +03:00

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