summaryrefslogtreecommitdiff
path: root/Lib/pstats.py
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2016-08-02 22:30:24 +0200
committerStefan Krah <skrah@bytereef.org>2016-08-02 22:30:24 +0200
commite12a68be3580a3c7b80d384b2664b1921a7ff55b (patch)
tree2e1e75e12dac90381c13013e37308b3ab43c3a17 /Lib/pstats.py
parent7bfbd1d3c56b2a5281edeb7a8e21598618b7c1a3 (diff)
downloadcpython-git-e12a68be3580a3c7b80d384b2664b1921a7ff55b.tar.gz
Issue #27241: Catch exception when running pstats as main.
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r--Lib/pstats.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py
index e1ec355740..d861413d41 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