[前][次][番号順一覧][スレッド一覧]

ruby-changes:20418

From: drbrain <ko1@a...>
Date: Sat, 9 Jul 2011 09:25:35 +0900 (JST)
Subject: [ruby-changes:20418] drbrain:r32466 (trunk): * enumerator.c: Remove "enumeration sequenced by".

drbrain	2011-07-09 09:25:27 +0900 (Sat, 09 Jul 2011)

  New Revision: 32466

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32466

  Log:
    * enumerator.c:  Remove "enumeration sequenced by".
      [Ruby 1.9 - Bug #4757]

  Modified files:
    trunk/ChangeLog
    trunk/enumerator.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 32465)
+++ ChangeLog	(revision 32466)
@@ -1,3 +1,8 @@
+Sat Jul  9 09:25:06 2011  Eric Hodel  <drbrain@s...>
+
+	* enumerator.c:  Remove "enumeration sequenced by".
+	  [Ruby 1.9 - Bug #4757]
+
 Sat Jul  9 09:14:56 2011  Eric Hodel  <drbrain@s...>
 
 	* io.c:  Note that methods other than IO#gets may increase IO#lineno.
Index: enumerator.c
===================================================================
--- enumerator.c	(revision 32465)
+++ enumerator.c	(revision 32466)
@@ -566,9 +566,9 @@
  *   #  yield nil        [nil]            nil
  *   #  yield [1, 2]     [[1, 2]]         [1, 2]
  *
- * Note that enumeration sequenced by +next_values+ does not affect other
- * non-external enumeration methods, unless underlying iteration methods
- * itself has side-effect, e.g. IO#each_line.
+ * Note that +next_values+ does not affect other non-external enumeration
+ * methods unless underlying iteration method itself has side-effect, e.g.
+ * IO#each_line.
  *
  */
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]