* string.c (rb_str_to_i): fix rdoc: String#to_i raises an
exception when base is invalid. [ruby-core:31685] Fri Sep 24 15:28:35 2010 NARUSE, Yui <naruse@ruby-lang.org> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29332 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
955507313b
commit
c49a1d11b9
@ -1,4 +1,9 @@
|
|||||||
2010-09-24 NARUSE, Yui <naruse@ruby-lang.org>
|
Fri Sep 24 15:50:43 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* string.c (rb_str_to_i): fix rdoc: String#to_i raises an
|
||||||
|
exception when base is invalid. [ruby-core:31685]
|
||||||
|
|
||||||
|
Fri Sep 24 15:28:35 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* string.c (rb_str_rindex): use rb_enc_prev_char instead of repeated str_nth.
|
* string.c (rb_str_rindex): use rb_enc_prev_char instead of repeated str_nth.
|
||||||
patched by Michael Selig [ruby-core:32498]
|
patched by Michael Selig [ruby-core:32498]
|
||||||
|
2
string.c
2
string.c
@ -4070,7 +4070,7 @@ rb_str_include(VALUE str, VALUE arg)
|
|||||||
* integer base <i>base</i> (between 2 and 36). Extraneous characters past the
|
* integer base <i>base</i> (between 2 and 36). Extraneous characters past the
|
||||||
* end of a valid number are ignored. If there is not a valid number at the
|
* end of a valid number are ignored. If there is not a valid number at the
|
||||||
* start of <i>str</i>, <code>0</code> is returned. This method never raises an
|
* start of <i>str</i>, <code>0</code> is returned. This method never raises an
|
||||||
* exception.
|
* exception when <i>base</i> is valid.
|
||||||
*
|
*
|
||||||
* "12345".to_i #=> 12345
|
* "12345".to_i #=> 12345
|
||||||
* "99 red balloons".to_i #=> 99
|
* "99 red balloons".to_i #=> 99
|
||||||
|
Loading…
x
Reference in New Issue
Block a user