aboutsummaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorZhiming Wang <i@zhimingwang.org>2021-01-20 16:56:21 +0800
committerGitHub <noreply@github.com>2021-01-20 09:56:21 +0100
commit3554fa4abecfb77ac5fcaa5ce8310eeca5683960 (patch)
tree152dc55103cd8c62b737be5d63b4615aba1431cc /Lib
parentbpo-41995: Handle allocation failure in _tracemalloc and _zoneinfo (GH-22635) (diff)
downloadcpython-3554fa4abecfb77ac5fcaa5ce8310eeca5683960.tar.gz
cpython-3554fa4abecfb77ac5fcaa5ce8310eeca5683960.tar.bz2
cpython-3554fa4abecfb77ac5fcaa5ce8310eeca5683960.zip
bpo-42005: profile and cProfile catch BrokenPipeError (GH-22643)
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/cProfile.py7
-rwxr-xr-xLib/profile.py7
2 files changed, 12 insertions, 2 deletions
diff --git a/Lib/cProfile.py b/Lib/cProfile.py
index 59b4699feb5..22a7d0aade8 100755
--- a/Lib/cProfile.py
+++ b/Lib/cProfile.py
@@ -175,7 +175,12 @@ def main():
'__package__': None,
'__cached__': None,
}
- runctx(code, globs, None, options.outfile, options.sort)
+ try:
+ runctx(code, globs, None, options.outfile, options.sort)
+ except BrokenPipeError as exc:
+ # Prevent "Exception ignored" during interpreter shutdown.
+ sys.stdout = None
+ sys.exit(exc.errno)
else:
parser.print_usage()
return parser
diff --git a/Lib/profile.py b/Lib/profile.py
index 5cb017ed830..d8599fb4eeb 100755
--- a/Lib/profile.py
+++ b/Lib/profile.py
@@ -595,7 +595,12 @@ def main():
'__package__': None,
'__cached__': None,
}
- runctx(code, globs, None, options.outfile, options.sort)
+ try:
+ runctx(code, globs, None, options.outfile, options.sort)
+ except BrokenPipeError as exc:
+ # Prevent "Exception ignored" during interpreter shutdown.
+ sys.stdout = None
+ sys.exit(exc.errno)
else:
parser.print_usage()
return parser