We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a58db4 commit 82d0674Copy full SHA for 82d0674
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