From c83746c9101b1e3319af8764439c19a0b140e43f Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 12 Aug 2005 07:17:36 +0000 Subject: * numeric.c (fix_equal, fix_cmp, fix_gt, fix_ge, fix_lt, fix_le): reduce coercing when a method knows about a operand type. [ruby-dev:26789] * lib/delegate.rb: simplifies Delegator classes; SimpleDelegator now uses method_missing for all methods. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index c7e270be8..f1635fd71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,12 @@ Thu Aug 11 23:29:03 2005 Nobuyoshi Nakada * ext/stringio/stringio.c: keep holding string after closed. +Thu Aug 11 20:48:40 2005 Tadashi Saito + + * numeric.c (fix_equal, fix_cmp, fix_gt, fix_ge, fix_lt, fix_le): + reduce coercing when a method knows about a operand type. + [ruby-dev:26789] + Thu Aug 11 13:01:48 2005 Kouhei Sutou * lib/rss: fixed sort bug. [ruby-list:41018] @@ -26,6 +32,11 @@ Thu Aug 11 13:01:48 2005 Kouhei Sutou (RSS::TestSetupMaker10::test_setup_maker_items_sort): added some tests for RSS::Maker::ItemsBase#do_sort. +Wed Aug 10 12:01:20 2005 Yukihiro Matsumoto + + * lib/delegate.rb: simplifies Delegator classes; SimpleDelegator + now uses method_missing for all methods. + Wed Aug 10 10:38:50 2005 Yukihiro Matsumoto * bignum.c (rb_big_mul0): multiply two numbers (x, y) without @@ -251,12 +262,12 @@ Wed Aug 3 21:59:16 2005 Hidetoshi NAGAI Wed Aug 3 12:40:28 2005 Tadashi Saito - * numeric.c (fix_minus, fix_mul, fix_quo, fix_div, fix_mod, - fix_divmod, fix_pow): ditto. - * numeric.c (fix_plus): reduce coercing when a method knows about a operand type. [ruby-dev:26723] + * numeric.c (fix_minus, fix_mul, fix_quo, fix_div, fix_mod, + fix_divmod, fix_pow): ditto. + * bignum.c (rb_big_div, rb_big_modulo): export to reduce coercing. -- cgit