summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-15 01:25:04 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-15 21:05:39 +0900
commit155f64e3c4ba23f0e85e8d69facceb21a487dccd (patch)
treef0c79b8bc3ddeedd98326dc45a5dd8cfc1917d08 /NEWS.md
parentd72fd1e45b192ab507f8170ceec1328c2aae7bb1 (diff)
Raise EPIPE at broken pipe for the backward compatibility
Instead of SignalException for SIGPIPE, raise `Errno::EPIPE` with instance variable `signo` and re-send that signal at exit. [Feature #14413]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3035
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/NEWS.md b/NEWS.md
index 890306ca86..2322e468b7 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -149,9 +149,8 @@ Excluding feature bug fixes.
* This is experimental; if it brings a big incompatibility issue,
it may be reverted until 2.8/3.0 release.
-* When writing to STDOUT redirected to a closed pipe, SignalException
- is raised now instead of Errno::EPIPE, so that no broken pipe error
- message will be shown. [[Feature #14413]]
+* When writing to STDOUT redirected to a closed pipe, no broken pipe
+ error message will be shown now. [[Feature #14413]]
## Stdlib compatibility issues