Actions
Feature #17745
closed`IO#close_on_exec=` returns different value when called with `send, __send__, public_send` or not
Feature #17745: `IO#close_on_exec=` returns different value when called with `send, __send__, public_send` or not
Status:
Closed
Assignee:
-
Target version:
-
Description
$ ruby -v -e 'p(STDIN.close_on_exec = 42)' ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin20] 42 $ ruby -v -e 'p(STDIN.__send__ :close_on_exec=, 42)' ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin20] nil Is this an intentional behavior?
ruby/spec has the test case, But I can't think any benefit this different returning value 🤔
Actions