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

* string.c (rb_str_rpartition): ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23564 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-05-24 23:06:57 +00:00
parent 7102c3b1a1
commit d629684bb9
3 changed files with 6 additions and 1 deletions

View file

@ -1,8 +1,10 @@
Mon May 25 07:50:05 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
Mon May 25 08:06:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* string.c (rb_str_partition): should use the converted result. a
patch from Marc-Andre Lafortune at [ruby-core:23540].
* string.c (rb_str_rpartition): ditto.
Mon May 25 06:25:38 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* test/ruby/test_hash.rb (TestHash::test_equal2): recursive hashes

View file

@ -6924,6 +6924,7 @@ rb_str_rpartition(VALUE str, VALUE sep)
rb_raise(rb_eTypeError, "type mismatch: %s given",
rb_obj_classname(sep));
}
sep = tmp;
pos = rb_str_sublen(str, pos);
pos = rb_str_rindex(str, sep, pos);
}

View file

@ -1712,6 +1712,8 @@ class TestString < Test::Unit::TestCase
assert_equal(%w(hel l o), "hello".rpartition(/l/))
assert_equal(%w(hel l o), "hello".rpartition("l"))
assert_raise(TypeError) { "hello".rpartition(1) }
def (hyphen = Object.new).to_str; "-"; end
assert_equal(%w(foo - bar), "foo-bar".rpartition(hyphen), '[ruby-core:23540]')
end
def test_setter