ruby-changes:15680
From: yugui <ko1@a...>
Date: Mon, 3 May 2010 18:13:04 +0900 (JST)
Subject: [ruby-changes:15680] Ruby:r27598 (ruby_1_9_1): merges r24662 from trunk into ruby_1_9_1. This fixes #3149.
yugui 2010-05-03 18:12:45 +0900 (Mon, 03 May 2010) New Revision: 27598 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=27598 Log: merges r24662 from trunk into ruby_1_9_1. This fixes #3149. -- * lib/tempfile.rb (Tempfile#unlink): reverted r23494, since the usage in RubyInline is considered wrong. Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/lib/tempfile.rb branches/ruby_1_9_1/version.h Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 27597) +++ ruby_1_9_1/ChangeLog (revision 27598) @@ -1,3 +1,8 @@ +Wed Aug 26 13:48:33 2009 Nobuyoshi Nakada <nobu@r...> + + * lib/tempfile.rb (Tempfile#unlink): reverted r23494, since the + usage in RubyInline is considered wrong. + Tue Feb 9 23:48:25 2010 Yusuke Endoh <mame@t...> * ext/bigdecimal/bigdecimal.c (BigDecimal_divide): fix precision too. Index: ruby_1_9_1/lib/tempfile.rb =================================================================== --- ruby_1_9_1/lib/tempfile.rb (revision 27597) +++ ruby_1_9_1/lib/tempfile.rb (revision 27598) @@ -137,7 +137,6 @@ # keep this order for thread safeness begin if File.exist?(@tmpname) - closed? or close File.unlink(@tmpname) end @@cleanlist.delete(@tmpname) Index: ruby_1_9_1/version.h =================================================================== --- ruby_1_9_1/version.h (revision 27597) +++ ruby_1_9_1/version.h (revision 27598) @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.1" -#define RUBY_PATCHLEVEL 423 +#define RUBY_PATCHLEVEL 424 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/