From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 20 Apr 2022 01:38:15 +0000 (-0700) Subject: Fix awkward sentence in signal docs (GH-91508) X-Git-Tag: v3.10.5~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f92aa4fde1728ed47dd6dc64206dcdcabd81d1fc;p=thirdparty%2FPython%2Fcpython.git Fix awkward sentence in signal docs (GH-91508) Co-authored-by: Jelle Zijlstra (cherry picked from commit 326ae71f1d93c12100150baa1173ea7ce7a96ea0) Co-authored-by: AJ Jordan --- diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 11bdfc8e8283..0aa5996b8942 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -676,10 +676,11 @@ case, wrap your entry point to catch this exception as follows:: if __name__ == '__main__': main() -Do not set :const:`SIGPIPE`'s disposition to :const:`SIG_DFL` -in order to avoid :exc:`BrokenPipeError`. Doing that would cause -your program to exit unexpectedly also whenever any socket connection -is interrupted while your program is still writing to it. +Do not set :const:`SIGPIPE`'s disposition to :const:`SIG_DFL` in +order to avoid :exc:`BrokenPipeError`. Doing that would cause +your program to exit unexpectedly whenever any socket +connection is interrupted while your program is still writing to +it. .. _handlers-and-exceptions: