Kenichi Kamiya 2019-11-03 09:24:55 +09:00 коммит произвёл Benoit Daloze
Родитель 452bee3ee8
Коммит 31110d820c
2 изменённых файлов: 4 добавлений и 4 удалений

4
re.c
Просмотреть файл

@ -3324,7 +3324,7 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re)
}
if (NIL_P(str)) {
rb_warn("given argument is nil");
rb_warn("given argument is nil; this will raise a TypeError in the next release");
}
pos = reg_match_pos(re, &str, pos);
if (pos < 0) {
@ -3372,7 +3372,7 @@ rb_reg_match_p(VALUE re, VALUE str, long pos)
int tmpreg;
if (NIL_P(str)) {
rb_warn("given argument is nil");
rb_warn("given argument is nil; this will raise a TypeError in the next release");
return Qfalse;
}
str = SYMBOL_P(str) ? rb_sym2str(str) : StringValue(str);

Просмотреть файл

@ -100,7 +100,7 @@ describe "Regexp#match" do
ruby_version_is "2.7"..."3.0" do
it "warns the deprecation when the given argument is nil" do
-> { /foo/.match(nil) }.should complain(/given argument is nil/)
-> { /foo/.match(nil) }.should complain(/given argument is nil; this will raise a TypeError in the next release/)
end
end
@ -151,7 +151,7 @@ describe "Regexp#match?" do
ruby_version_is "2.7"..."3.0" do
it "warns the deprecation" do
-> { /./.match?(nil) }.should complain(/given argument is nil/)
-> { /./.match?(nil) }.should complain(/given argument is nil; this will raise a TypeError in the next release/)
end
end