From 76e8beb6e153b4da1e953d45d2767b1b4c08d478 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 20 Jun 2016 07:35:05 +0000 Subject: update description about rb_cFixnum and rb_cBignum. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- NEWS | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 3d96b4194c..b562ea1a83 100644 --- a/NEWS +++ b/NEWS @@ -121,10 +121,12 @@ with all sufficient information, see the ChangeLog file or Redmine For example, 0 is an instance of Integer: 0.class returns Integer. The constants Fixnum and Bignum is bound to Integer. So obj.kind_of?(Fixnum) works as obj.kind_of?(Integer). - At C-level, rb_cFixnum and rb_cBignum is same as rb_cInteger. - So, class based dispatch, such as klass == rb_cFixnum and - klass == rb_cBignum, should be changed to FIXNUM_P(obj) and - RB_TYPE_P(obj, T_BIGNUM). + At C-level, Fixnum object and Bignum object should be distinguished by + FIXNUM_P(obj) and RB_TYPE_P(obj, T_BIGNUM). + ruby-2.4.0-preview1 (temporally) removes rb_cFixnum and rb_cBignum + to check the effect of incompatibility. + (rb_cFixnum and rb_cBignum may be defined as rb_cInteger later if + compilation failure of extension library is too big problem.) * String/Symbol#upcase/downcase/swapcase/capitalize(!) now work for all of Unicode, not only for ASCII. [Feature #10085] -- cgit v1.2.3