diff --git a/Lib/idlelib/AutoComplete.py b/Lib/idlelib/AutoComplete.py index 519099033f9..4e173252d61 100644 --- a/Lib/idlelib/AutoComplete.py +++ b/Lib/idlelib/AutoComplete.py @@ -190,8 +190,7 @@ def fetch_completions(self, what, mode): bigl = eval("dir()", namespace) bigl.sort() if "__all__" in bigl: - smalll = list(eval("__all__", namespace)) - smalll.sort() + smalll = sorted(eval("__all__", namespace)) else: smalll = [s for s in bigl if s[:1] != '_'] else: @@ -200,8 +199,7 @@ def fetch_completions(self, what, mode): bigl = dir(entity) bigl.sort() if "__all__" in bigl: - smalll = list(entity.__all__) - smalll.sort() + smalll = sorted(entity.__all__) else: smalll = [s for s in bigl if s[:1] != '_'] except: