We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bde26b commit 737ef3fCopy full SHA for 737ef3f
ChangeLog
@@ -1,3 +1,8 @@
1
+Thu Feb 2 16:01:24 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * eval.c (eval): need not to protect $SAFE value.
4
+ [ruby-core:07177]
5
6
Thu Feb 2 14:45:53 2006 Ville Mattila <ville.mattila@stonesoft.com>
7
8
* configure.in: The isinf is not regognized by autoconf
@@ -12,6 +17,11 @@ Wed Feb 1 22:01:47 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
12
17
* ruby.c (set_arg0): if use setenv(3), environ space cannot be used
13
18
for altering argv[0].
14
19
20
+Tue Jan 31 14:46:28 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
21
22
+ * struct.c (rb_struct_select): update RDoc description.
23
+ [ruby-core:7254]
24
15
25
Tue Jan 31 11:58:51 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
16
26
27
* ext/tk/lib/multi-tk.rb: add MultiTkIp#eval and bg_eval.
@@ -228,6 +238,12 @@ Thu Dec 29 17:02:07 2005 Tanaka Akira <akr@m17n.org>
228
238
* test/ruby/envutil.rb (EnvUtil.rubybin): search "ruby" instead of
229
239
"miniruby". [ruby-dev:28140]
230
240
241
+Tue Dec 27 16:59:52 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
242
243
+ * test/drb/drbtest.rb (DRbService::self.ext_service): increase
244
+ timeout limit. a patch from Kazuhiro NISHIYAMA
245
+ <zn at mbf.nifty.com>. [ruby-dev:28132]
246
231
247
Tue Dec 27 08:29:18 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
232
248
233
249
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLSocket#post_connection_chech):
eval.c
@@ -6366,7 +6366,6 @@ eval(self, src, scope, file, line)
6366
POP_TAG();
6367
POP_CLASS();
6368
ruby_in_eval--;
6369
- ruby_safe_level = safe;
6370
if (!NIL_P(scope)) {
6371
int dont_recycle = ruby_scope->flags & SCOPE_DONT_RECYCLE;
6372
struct.c
@@ -728,21 +728,15 @@ rb_struct_values_at(argc, argv, s)
728
729
/*
730
* call-seq:
731
- * struct.select(fixnum, ... ) => array
732
* struct.select {|i| block } => array
733
*
734
- * The first form returns an array containing the elements in
735
- * <i>struct</i> corresponding to the given indices. The second
736
- * form invokes the block passing in successive elements from
+ * Invokes the block passing in successive elements from
737
* <i>struct</i>, returning an array containing those elements
738
* for which the block returns a true value (equivalent to
739
* <code>Enumerable#select</code>).
740
741
* Lots = Struct.new(:a, :b, :c, :d, :e, :f)
742
* l = Lots.new(11, 22, 33, 44, 55, 66)
743
- * l.select(1, 3, 5) #=> [22, 44, 66]
744
- * l.select(0, 2, 4) #=> [11, 33, 55]
745
- * l.select(-1, -3, -5) #=> [66, 44, 22]
746
* l.select {|v| (v % 2).zero? } #=> [22, 44, 66]
747
*/
748
test/drb/drbtest.rb
@@ -31,7 +31,7 @@ def self.server
31
@server || @@server
32
end
33
def self.ext_service(name)
34
- timeout(10, RuntimeError) do
+ timeout(100, RuntimeError) do
35
manager.service(name)
36
37
0 commit comments