Skip to content

Commit b3f1ffd

Browse files
committed
merge revision(s) 54231: [Backport ruby#12121]
* variable.c: Added documentation about order of `Module#constants` [ci skip][Bug ruby#12121][ruby-dev:49505][fix rubyGH-1301] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@54285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent e4a39e0 commit b3f1ffd

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Fri Mar 25 18:42:46 2016 Koichi ITO <koic.ito@gmail.com>
2+
3+
* variable.c: Added documentation about order of `Module#constants`
4+
[ci skip][Bug #12121][ruby-dev:49505][fix GH-1301]
5+
16
Fri Mar 25 18:41:14 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* string.c (enc_succ_alnum_char): try to skip an invalid character

variable.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2058,6 +2058,9 @@ rb_const_list(void *data)
20582058
* modules (example at start of section), unless the <i>inherit</i>
20592059
* parameter is set to <code>false</code>.
20602060
*
2061+
* The implementation makes no guarantees about the order in which the
2062+
* constants are yielded.
2063+
*
20612064
* IO.constants.include?(:SYNC) #=> true
20622065
* IO.constants(false).include?(:SYNC) #=> false
20632066
*

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.9"
22
#define RUBY_RELEASE_DATE "2016-03-25"
3-
#define RUBY_PATCHLEVEL 482
3+
#define RUBY_PATCHLEVEL 483
44

55
#define RUBY_RELEASE_YEAR 2016
66
#define RUBY_RELEASE_MONTH 3

0 commit comments

Comments
 (0)