summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2020-12-05 22:31:52 -0800
committerJeremy Evans <code@jeremyevans.net>2020-12-05 22:31:52 -0800
commit18b2ce11b5b0736723aa321e77c67be4395c3297 (patch)
tree1a7ee8cc3f22d208e29500a3d58f4dfa8646e944 /NEWS.md
parent5d07a21ccd50f4e966749bf5de70e343eed232ac (diff)
Mentioned numbered parameter assignment is a SyntaxError in NEWS [ci skip]
Requested by Junichi Ito.
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/NEWS.md b/NEWS.md
index 46dacc571b..80319e50e5 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -82,10 +82,13 @@ sufficient information, see the ChangeLog file or Redmine
* When a class variable is overtaken by the same definition in an
ancestor class/module, a RuntimeError is now raised (previously,
- it only issued a warning in verbose mode. Additionally, accessing a
+ it only issued a warning in verbose mode). Additionally, accessing a
class variable from the toplevel scope is now a RuntimeError.
[[Bug #14541]]
+* Assigning to a numbered parameter is now a SyntaxError instead of
+ a warning.
+
* Endless method definition is added. [EXPERIMENTAL]
[[Feature #16746]]