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

ruby-changes:42255

From: nagachika <ko1@a...>
Date: Tue, 29 Mar 2016 01:02:59 +0900 (JST)
Subject: [ruby-changes:42255] nagachika:r54329 (ruby_2_2): merge revision(s) 54231: [Backport #12121]

nagachika	2016-03-29 01:02:55 +0900 (Tue, 29 Mar 2016)

  New Revision: 54329

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54329

  Log:
    merge revision(s) 54231: [Backport #12121]
    
    * variable.c: Added documentation about order of `Module#constants`
      [ci skip][Bug #12121][ruby-dev:49505][fix GH-1301]

  Modified directories:
    branches/ruby_2_2/
  Modified files:
    branches/ruby_2_2/ChangeLog
    branches/ruby_2_2/variable.c
    branches/ruby_2_2/version.h
Index: ruby_2_2/version.h
===================================================================
--- ruby_2_2/version.h	(revision 54328)
+++ ruby_2_2/version.h	(revision 54329)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/version.h#L1
 #define RUBY_VERSION "2.2.5"
 #define RUBY_RELEASE_DATE "2016-03-29"
-#define RUBY_PATCHLEVEL 271
+#define RUBY_PATCHLEVEL 272
 
 #define RUBY_RELEASE_YEAR 2016
 #define RUBY_RELEASE_MONTH 3
Index: ruby_2_2/variable.c
===================================================================
--- ruby_2_2/variable.c	(revision 54328)
+++ ruby_2_2/variable.c	(revision 54329)
@@ -2074,6 +2074,9 @@ rb_const_list(void *data) https://github.com/ruby/ruby/blob/trunk/ruby_2_2/variable.c#L2074
  *  modules (example at start of section), unless the <i>inherit</i>
  *  parameter is set to <code>false</code>.
  *
+ *  The implementation makes no guarantees about the order in which the
+ *  constants are yielded.
+ *
  *    IO.constants.include?(:SYNC)        #=> true
  *    IO.constants(false).include?(:SYNC) #=> false
  *
Index: ruby_2_2/ChangeLog
===================================================================
--- ruby_2_2/ChangeLog	(revision 54328)
+++ ruby_2_2/ChangeLog	(revision 54329)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/ChangeLog#L1
+Tue Mar 29 01:02:49 2016  Koichi ITO  <koic.ito@g...>
+
+	* variable.c: Added documentation about order of `Module#constants`
+	  [ci skip][Bug #12121][ruby-dev:49505][fix GH-1301]
+
 Tue Mar 29 00:56:10 2016  Rei Odaira  <Rei.Odaira@g...>
 
 	* test/ruby/test_process.rb (test_execopts_gid): Skip a test

Property changes on: ruby_2_2
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r54231


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

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