From 27c430e54e624fa1ad943077b9001c280f91761f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 30 Jul 2001 10:21:13 +0000 Subject: [PATCH] Patch #445538: add completion for pstats.py sort cmd. --- Lib/pstats.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/pstats.py b/Lib/pstats.py index 20a6cd1e145..4fd55c85ea7 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -640,6 +640,8 @@ if __name__ == '__main__': def help_sort(self): print "Sort profile data according to specified keys." print "(Typing `sort' without arguments lists valid keys.)" + def complete_sort(self, text, *args): + return [a for a in Stats.sort_arg_dict_default.keys() if a.startswith(text)] def do_stats(self, line): return self.generic('print_stats', line)