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

ruby-changes:39744

From: ko1 <ko1@a...>
Date: Sat, 12 Sep 2015 00:51:20 +0900 (JST)
Subject: [ruby-changes:39744] ko1:r51825 (trunk): * iseq.c: disable ISeq.load. It enabled accidentally at r51794.

ko1	2015-09-12 00:50:42 +0900 (Sat, 12 Sep 2015)

  New Revision: 51825

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

  Log:
    * iseq.c: disable ISeq.load. It enabled accidentally at r51794.

  Modified files:
    trunk/ChangeLog
    trunk/iseq.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 51824)
+++ ChangeLog	(revision 51825)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Sep 11 17:49:36 2015  Koichi Sasada  <ko1@a...>
+
+	* iseq.c: disable ISeq.load. It enabled accidentally at r51794.
+
 Fri Sep 11 11:15:12 2015  Shugo Maeda  <shugo@r...>
 
 	* lib/net/ftp.rb (size, mdtm, system): parse responses according to
Index: iseq.c
===================================================================
--- iseq.c	(revision 51824)
+++ iseq.c	(revision 51825)
@@ -2320,9 +2320,9 @@ Init_ISeq(void) https://github.com/ruby/ruby/blob/trunk/iseq.c#L2320
 #if 0 /* TBD */
     rb_define_private_method(rb_cISeq, "marshal_dump", iseqw_marshal_dump, 0);
     rb_define_private_method(rb_cISeq, "marshal_load", iseqw_marshal_load, 1);
-#endif
     /* disable this feature because there is no verifier. */
     rb_define_singleton_method(rb_cISeq, "load", iseq_s_load, -1);
+#endif
     (void)iseq_s_load;
 
     rb_define_singleton_method(rb_cISeq, "compile", iseqw_s_compile, -1);

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

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