mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* file.c (rb_stat_inspect): don't raise if self is not initialized.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18753 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
61acccefb7
commit
cefd28a84f
3 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Aug 21 19:20:25 2008 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* file.c (rb_stat_inspect): don't raise if self is not initialized.
|
||||||
|
|
||||||
Thu Aug 21 19:17:02 2008 Tanaka Akira <akr@fsij.org>
|
Thu Aug 21 19:17:02 2008 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* process.c (pst_pid): use rb_attr_get to avoid warning on
|
* process.c (pst_pid): use rb_attr_get to avoid warning on
|
||||||
|
|
6
file.c
6
file.c
|
@ -671,6 +671,12 @@ rb_stat_inspect(VALUE self)
|
||||||
{"ctime", rb_stat_ctime},
|
{"ctime", rb_stat_ctime},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct stat* st;
|
||||||
|
Data_Get_Struct(self, struct stat, st);
|
||||||
|
if (!st) {
|
||||||
|
return rb_sprintf("#<%s: uninitialized>", rb_obj_classname(self));
|
||||||
|
}
|
||||||
|
|
||||||
str = rb_str_buf_new2("#<");
|
str = rb_str_buf_new2("#<");
|
||||||
rb_str_buf_cat2(str, rb_obj_classname(self));
|
rb_str_buf_cat2(str, rb_obj_classname(self));
|
||||||
rb_str_buf_cat2(str, " ");
|
rb_str_buf_cat2(str, " ");
|
||||||
|
|
|
@ -117,5 +117,6 @@ class TestFile < Test::Unit::TestCase
|
||||||
|
|
||||||
def test_uninitialized
|
def test_uninitialized
|
||||||
assert_raise(TypeError) { File::Stat.allocate.readable? }
|
assert_raise(TypeError) { File::Stat.allocate.readable? }
|
||||||
|
assert_nothing_raised { File::Stat.allocate.inspect }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue