From 6217e1e85a3f2c6d8ca27c40c2934e0d4311efd5 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 11 Dec 2012 09:37:52 +0100 Subject: [PATCH] private members are now being put at the end of a completion list, #78 --- jedi/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jedi/api.py b/jedi/api.py index f3c0dd48..6716a586 100644 --- a/jedi/api.py +++ b/jedi/api.py @@ -168,6 +168,7 @@ class Script(object): return sorted(comps, key=lambda x: (x.word.startswith('__'), + x.word.startswith('_'), x.word.lower())) def _prepare_goto(self, goto_path, is_like_search=False):