From e12a68be3580a3c7b80d384b2664b1921a7ff55b Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Tue, 2 Aug 2016 22:30:24 +0200 Subject: [PATCH] Issue #27241: Catch exception when running pstats as main. --- Lib/pstats.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Lib/pstats.py b/Lib/pstats.py index e1ec3557406..d861413d419 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -574,7 +574,10 @@ if __name__ == '__main__': def do_add(self, line): if self.stats: - self.stats.add(line) + try: + self.stats.add(line) + except IOError as e: + print("Failed to load statistics for %s: %s" % (line, e), file=self.stream) else: print("No statistics object is loaded.", file=self.stream) return 0