summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-14 05:58:51 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-14 05:58:51 +0000
commit86d4408ce9c0463b9c77623cba5d58d9e9e9d289 (patch)
tree5f276c672aa8b49559aeee572a8743fdd1cdbd04
parent90d94de3b00f506dfb769501a5f11dbf2186d434 (diff)
merge revision(s) 44628: [Backport #9413]
* eval.c (rb_mod_s_constants): return its own constants for other than Module itself. [ruby-core:59763] [Bug #9413] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@44939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--eval.c4
-rw-r--r--test/ruby/test_module.rb13
-rw-r--r--version.h2
4 files changed, 21 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d9b623a974..fc116a717e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 14 14:58:19 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * eval.c (rb_mod_s_constants): return its own constants for other
+ than Module itself. [ruby-core:59763] [Bug #9413]
+
Fri Feb 14 14:40:27 2014 Masaki Matsushita <glass.saga@gmail.com>
* array.c (rb_hash_rehash): use hash_alloc() instead of rb_hash_new().
diff --git a/eval.c b/eval.c
index 9ceb833d37..92b02f73fa 100644
--- a/eval.c
+++ b/eval.c
@@ -313,8 +313,8 @@ rb_mod_s_constants(int argc, VALUE *argv, VALUE mod)
VALUE cbase = 0;
void *data = 0;
- if (argc > 0) {
- return rb_mod_constants(argc, argv, rb_cModule);
+ if (argc > 0 || mod != rb_cModule) {
+ return rb_mod_constants(argc, argv, mod);
}
while (cref) {
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index 6673852d9c..e72a6ab8c9 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -669,6 +669,19 @@ class TestModule < Test::Unit::TestCase
m.instance_eval { remove_const(:Foo) }
end
+ class Bug9413
+ class << self
+ Foo = :foo
+ end
+ end
+
+ def test_singleton_constants
+ bug9413 = '[ruby-core:59763] [Bug #9413]'
+ c = Bug9413.singleton_class
+ assert_include(c.constants(true), :Foo, bug9413)
+ assert_include(c.constants(false), :Foo, bug9413)
+ end
+
def test_frozen_class
m = Module.new
m.freeze
diff --git a/version.h b/version.h
index 8b2fdeef48..13684ce114 100644
--- a/version.h
+++ b/version.h
@@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.3"
-#define RUBY_PATCHLEVEL 520
+#define RUBY_PATCHLEVEL 521
#define RUBY_RELEASE_DATE "2014-02-14"
#define RUBY_RELEASE_YEAR 2014