diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-01-28 08:44:45 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-01-28 08:44:45 +0000 |
| commit | 5a928a5496897d334534b7e025a5e41c9170aedd (patch) | |
| tree | f5f2eb688ce0d96f6b51515366f2dbf048cc3639 /object.c | |
| parent | 2228249a7b8f0fd37761a242bed50c3961666f4b (diff) | |
| download | ruby-5a928a5496897d334534b7e025a5e41c9170aedd.tar.gz ruby-5a928a5496897d334534b7e025a5e41c9170aedd.tar.xz ruby-5a928a5496897d334534b7e025a5e41c9170aedd.zip | |
* eval.c (is_defined): defined?(Foo::Baz) should check constants
only, no methods.
* eval.c (is_defined): should not dump core on defined?(a::b)
where a is not a class nor a module.
* object.c (Init_Object): remove dup and clone from TrueClass,
FalseClass, and NilClass.
* array.c (rb_ary_fill): Array#fill takes block to get the value to
fill.
* string.c (rb_str_to_i): to_i(0) auto-detects base radix.
* array.c (rb_ary_initialize): fill by the block evaluation value
if block is given.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2021 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
| -rw-r--r-- | object.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1239,6 +1239,8 @@ Init_Object() rb_define_method(rb_cNilClass, "&", false_and, 1); rb_define_method(rb_cNilClass, "|", false_or, 1); rb_define_method(rb_cNilClass, "^", false_xor, 1); + rb_undef_method(rb_cNilClass, "clone"); + rb_undef_method(rb_cNilClass, "dup"); rb_define_method(rb_cNilClass, "nil?", rb_true, 0); rb_undef_method(CLASS_OF(rb_cNilClass), "allocate"); @@ -1314,6 +1316,8 @@ Init_Object() rb_define_method(rb_cTrueClass, "^", true_xor, 1); rb_undef_method(CLASS_OF(rb_cTrueClass), "allocate"); rb_undef_method(CLASS_OF(rb_cTrueClass), "new"); + rb_undef_method(rb_cTrueClass, "clone"); + rb_undef_method(rb_cTrueClass, "dup"); rb_define_global_const("TRUE", Qtrue); rb_cFalseClass = rb_define_class("FalseClass", rb_cObject); @@ -1323,6 +1327,8 @@ Init_Object() rb_define_method(rb_cFalseClass, "^", false_xor, 1); rb_undef_method(CLASS_OF(rb_cFalseClass), "allocate"); rb_undef_method(CLASS_OF(rb_cFalseClass), "new"); + rb_undef_method(rb_cFalseClass, "clone"); + rb_undef_method(rb_cFalseClass, "dup"); rb_define_global_const("FALSE", Qfalse); eq = rb_intern("=="); |
