1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Ruby 2.4.0 will not have rb_cFixnum and rb_cBignum is removed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56389 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2016-10-11 05:35:37 +00:00
parent 8c3af8ecc0
commit 19b38f83df

6
NEWS
View file

@ -181,10 +181,8 @@ with all sufficient information, see the ChangeLog file or Redmine
FIXNUM_P(obj) and RB_TYPE_P(obj, T_BIGNUM).
RUBY_INTEGER_UNIFICATION can be used to detect this feature at C-level.
0.class == Integer can be used to detect this feature at Ruby-level.
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.)
The C-level constants, rb_cFixnum and rb_cBignum, is removed.
They can cause compilation failure.
* String/Symbol#upcase/downcase/swapcase/capitalize(!) now work for all of
Unicode, not only for ASCII. [Feature #10085]