We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb52c3a commit 4c63273Copy full SHA for 4c63273
1 file changed
bpython/repl.py
@@ -524,9 +524,8 @@ def complete(self, tab=False):
524
if not self.argspec:
525
return False
526
else:
527
-# remove duplicates and restore order
528
- self.matches = sorted(set(matches), self.cmp_matches,
529
- self.key_matches)
+# remove duplicates
+ self.matches = matches
530
531
532
if len(self.matches) == 1 and not OPTS.auto_display_list:
0 commit comments