зеркало из https://github.com/github/ruby.git
* transcode.c (str_encode): returns duplicated string if nothing
changed. [ruby-core:18578] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
ca36233e55
Коммит
2f67b43aec
|
@ -1,3 +1,8 @@
|
|||
Mon Sep 15 02:37:19 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* transcode.c (str_encode): returns duplicated string if nothing
|
||||
changed. [ruby-core:18578]
|
||||
|
||||
Sun Sep 14 22:09:01 2008 Takeyuki Fujioka <xibbar@ruby-lang.org>
|
||||
|
||||
* lib/cgi/core.rb (CGI::parse): performance improvement
|
||||
|
|
|
@ -582,4 +582,10 @@ class TestTranscode < Test::Unit::TestCase
|
|||
assert_raise(Encoding::ConversionUndefined) { "\u203E".encode("CP51932") }
|
||||
end
|
||||
|
||||
def test_nothing_changed
|
||||
a = "James".force_encoding("US-ASCII")
|
||||
b = a.encode("Shift_JIS")
|
||||
assert_equal(Encoding::US_ASCII, a.encoding)
|
||||
assert_equal(Encoding::Shift_JIS, b.encoding)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2570,7 +2570,12 @@ str_encode(int argc, VALUE *argv, VALUE str)
|
|||
int encidx = str_transcode(argc, argv, &newstr);
|
||||
|
||||
if (encidx < 0) return rb_str_dup(str);
|
||||
RBASIC(newstr)->klass = rb_obj_class(str);
|
||||
if (newstr == str) {
|
||||
newstr = rb_str_dup(str);
|
||||
}
|
||||
else {
|
||||
RBASIC(newstr)->klass = rb_obj_class(str);
|
||||
}
|
||||
return str_encode_associate(newstr, encidx);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче