mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bignum.c (rb_cstr_to_inum): should accept underscores of
sequence of two or more when unchecked mode. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1f225be2e5
commit
2630ad09bd
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Nov 18 20:46:08 2012 Tadayoshi Funaba <tadf@dotrb.org>
|
||||
|
||||
* bignum.c (rb_cstr_to_inum): should accept underscores of
|
||||
sequence of two or more when unchecked mode.
|
||||
|
||||
Sun Nov 18 16:33:00 2012 Naohisa Goto <ngotogenome@gmail.com>
|
||||
|
||||
* configure.in, Makefile.in, common.mk: support DTrace on Solaris 10,
|
||||
|
|
3
bignum.c
3
bignum.c
|
@ -733,7 +733,8 @@ rb_cstr_to_inum(const char *str, int base, int badcheck)
|
|||
if (badcheck) goto bad;
|
||||
break;
|
||||
}
|
||||
nondigit = (char) c;
|
||||
if (badcheck)
|
||||
nondigit = (char) c;
|
||||
continue;
|
||||
}
|
||||
else if ((c = conv_digit(c)) < 0) {
|
||||
|
|
|
@ -1513,7 +1513,7 @@ class TestString < Test::Unit::TestCase
|
|||
assert_equal(12, "1_2".to_i(10))
|
||||
assert_equal(0x40000000, "1073741824".to_i(10))
|
||||
assert_equal(0x4000000000000000, "4611686018427387904".to_i(10))
|
||||
assert_equal(1, "1__2".to_i(10))
|
||||
assert_equal(12, "1__2".to_i(10))
|
||||
assert_equal(1, "1_z".to_i(10))
|
||||
|
||||
bug6192 = '[ruby-core:43566]'
|
||||
|
|
Loading…
Reference in a new issue