NEWS: Make it clear that delegation syntax (...) requires parentheses

Ref [Feature #16253]
This commit is contained in:
Yusuke Endoh 2019-11-12 17:04:11 +09:00
parent fb02e3192c
commit d1ae2bc27f

3
NEWS
View File

@ -191,7 +191,7 @@ sufficient information, see the ChangeLog file or Redmine
* +yield+ in singleton class syntax is warned and will be deprecated later [Feature #15575].
* Argument forwarding by <code>...</code> is introduced. [Feature #16253]
* Argument forwarding by <code>(...)</code> is introduced. [Feature #16253]
def foo(...)
bar(...)
@ -199,6 +199,7 @@ sufficient information, see the ChangeLog file or Redmine
All arguments to +foo+ are forwarded to +bar+, including keyword and
block arguments.
Note that the parentheses are mandatory. `bar ...` is parsed as an endless range.
=== Core classes updates (outstanding ones only)