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_inspect): NUL should not be represented as

"\0" when octal digits may follow.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2013-04-23 00:52:17 +00:00
parent 1f4e534815
commit ade2ba57a2
3 changed files with 16 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Apr 23 09:51:26 2013 Akinori MUSHA <knu@iDaemons.org>
* string.c (rb_str_inspect): NUL should not be represented as
"\0" when octal digits may follow.
Mon Apr 22 22:54:00 2013 Charlie Somerville <charlie@charliesomerville.com> Mon Apr 22 22:54:00 2013 Charlie Somerville <charlie@charliesomerville.com>
* insns.def (opt_mod): Use % operator if both operands are positive for * insns.def (opt_mod): Use % operator if both operands are positive for

View file

@ -4572,7 +4572,11 @@ rb_str_inspect(VALUE str)
} }
} }
switch (c) { switch (c) {
case '\0': cc = '0'; break; case '\0':
if (p - n > prev) str_buf_cat(result, prev, p - n - prev);
str_buf_cat(result, "\\000", 4);
prev = p;
continue;
case '\n': cc = 'n'; break; case '\n': cc = 'n'; break;
case '\r': cc = 'r'; break; case '\r': cc = 'r'; break;
case '\t': cc = 't'; break; case '\t': cc = 't'; break;

View file

@ -1985,6 +1985,12 @@ class TestString < Test::Unit::TestCase
assert_instance_of(String, s.to_s) assert_instance_of(String, s.to_s)
end end
def test_inspect_nul
s = "\0" + "12"
assert_not_equal '"\\012"', eval(s.inspect)
assert_equal s, eval(s.inspect)
end
def test_partition def test_partition
assert_equal(%w(he l lo), "hello".partition(/l/)) assert_equal(%w(he l lo), "hello".partition(/l/))
assert_equal(%w(he l lo), "hello".partition("l")) assert_equal(%w(he l lo), "hello".partition("l"))