diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-05 09:36:54 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-05 09:36:54 +0000 |
commit | 03581d5826a7f2ed7b7f9c0691220c1a5ac00988 (patch) | |
tree | 123b6e6109b307d0006908538b2daaa653f0639f /ChangeLog | |
parent | afa2732b784aaac7800ba03d5617d5d395964149 (diff) | |
download | ruby-03581d5826a7f2ed7b7f9c0691220c1a5ac00988.tar.gz |
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1055 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -2,6 +2,54 @@ Mon Dec 4 13:44:01 2000 WATANABE Hirofumi <eban@ruby-lang.org> * lib/jcode.rb: consider multibyte. not /n. +Mon Dec 4 09:49:36 2000 Yukihiro Matsumoto <matz@ruby-lang.org> + + * string.c (rb_str_inspect): output whole string contents. no more `...' + + * string.c (rb_str_dump): should propagate taintness. + + * hash.c (env_inspect): hash like human readable output. + + * variable.c (rb_ivar_get): prohibiting instance variable access + is too much restriction. + + * class.c (method_list): retrieving information should not be + restricted where $SAFE=4. + + * class.c (rb_obj_singleton_methods): ditto. + + * eval.c (rb_thread_priority): ditto. + + * eval.c (rb_thread_local_aref): ditto. + + * variable.c (rb_obj_instance_variables): ditto. + + * variable.c (rb_mod_const_at): ditto. + + * variable.c (rb_mod_class_variables): ditto. + + * eval.c (rb_exec_end_proc): end_proc should be preserved. + +Sat Dec 2 22:32:43 2000 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_yield_0): || should accept exactly zero argument. + + * parse.y (stmt): multiple right hand side for single assignment + (e.g. a = 1,2) is allowed. + +Wed Nov 29 07:55:29 2000 Yukihiro Matsumoto <matz@ruby-lang.org> + + * marshal.c (w_long): dumping long should be smaller than 32bit max. + + * marshal.c (w_long): shorter long format for small integers(-123..122). + + * marshal.c (r_long): ditto. + +Tue Nov 28 18:10:51 2000 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_mod_define_method): quick hack to implement + on-the-fly method definition. experimental. + Mon Nov 27 17:00:35 2000 Yukihiro Matsumoto <matz@ruby-lang.org> * eval.c (rb_eval): should not redefine builtin classes/modules |