summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-21 20:17:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-21 20:17:27 +0000
commit7eac66b9c6a79a89900945e68e3eff457cf1cb7e (patch)
tree48808afb6ef57e0c9c0d0ea9503b6e5d7fd7c472 /object.c
parentb20521ddc595cfbf9b0d95c54da42151bcef4d96 (diff)
* object.c (rb_obj_inspect): print instance variables only when
Object#to_s is not overridden. [ruby-core:24425] * class.c (rb_obj_basic_to_s_p): new function. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25428 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/object.c b/object.c
index fc2c23716e..6e69343732 100644
--- a/object.c
+++ b/object.c
@@ -369,16 +369,19 @@ inspect_obj(VALUE obj, VALUE str, int recur)
* Returns a string containing a human-readable representation of
* <i>obj</i>. If not overridden and no instance variables, uses the
* <code>to_s</code> method to generate the string.
+ * <i>obj</i>. If not overridden, uses the <code>to_s</code> method to
+ * generate the string.
*
* [ 1, 2, 3..4, 'five' ].inspect #=> "[1, 2, 3..4, \"five\"]"
* Time.new.inspect #=> "2008-03-08 19:43:39 +0900"
*/
+extern int rb_obj_basic_to_s_p(VALUE);
+
static VALUE
rb_obj_inspect(VALUE obj)
{
-
- if (TYPE(obj) == T_OBJECT) {
+ if (TYPE(obj) == T_OBJECT && rb_obj_basic_to_s_p(obj)) {
int has_ivar = 0;
VALUE *ptr = ROBJECT_IVPTR(obj);
long len = ROBJECT_NUMIV(obj);
@@ -398,6 +401,7 @@ rb_obj_inspect(VALUE obj)
str = rb_sprintf("-<%s:%p", c, (void*)obj);
return rb_exec_recursive(inspect_obj, obj, str);
}
+ return rb_any_to_s(obj);
}
return rb_funcall(obj, rb_intern("to_s"), 0, 0);
}