Project

General

Profile

Activity

From 09/01/2010 to 09/07/2010

09/07/2010

11:19 PM Feature #3773: Module#parent
=begin
The use cases that I am aware of are from Rails:

* http://github.com/rails/rails/blob/master/activesuppo...
trans (Thomas Sawyer)
10:27 PM Bug #3798 (Closed): ruby 1.9.2 + OpenSSL 1.0.0.a on Windows 64 test hang .....
=begin
Complie Env: MSVC 2010

1. compile openssl 1.0.0a
perl configure zlib enable-static-engine no-asm VC...
[email protected] (ray linn)
10:24 PM Bug #3728: IO.select is not documented.
=begin
I created a patch to fill some documentation for IO.select (and Kernel.select eventually). The code example i...
eitoball (Eito Katagiri)
09:43 AM Bug #3795 (Assigned): Date._valid_civil? in 1.9.1 raises exception for some invalid dates instead of returning false
=begin

=end
naruse (Yui NARUSE)
02:11 AM Bug #3795 (Closed): Date._valid_civil? in 1.9.1 raises exception for some invalid dates instead of returning false
=begin
possible_bug = <<_possible_bug
Date._valid_civil? in 1.9.1 raises exception for some invalid dates
in...
colinb2 (Colin Bartlett)
05:48 AM Bug #3796 (Closed): make check fails on powerpc64 linux
=begin
I cloned from git://github.com/ruby/ruby.git, then ran this as root:

autoreconf; ./configure && mak...
meyering (Jim Meyering)
01:02 AM Bug #3788: URI cannot parse IPv6 addresses propertly
=begin
so can we reopen the bug so it wont get lost?:)
=end
darix (Marcus Rückert)
12:15 AM Bug #3788: URI cannot parse IPv6 addresses propertly
=begin
Hmm, your point has a reson. I consider this.
http://msdn.microsoft.com/en-us/library/system.uri.dnssafehos...
naruse (Yui NARUSE)

09/06/2010

07:51 PM Bug #3788: URI cannot parse IPv6 addresses propertly
=begin
no it doesnt.

if i use ipv6-localhost instead of [::1] it works.

$ cat tt.rb
#!/usr/bin/ruby
...
darix (Marcus Rückert)
07:33 PM Bug #3788: URI cannot parse IPv6 addresses propertly
=begin
The machine disables IPv6.
=end
naruse (Yui NARUSE)
07:05 PM Bug #3788: URI cannot parse IPv6 addresses propertly
=begin
require 'uri'
require 'net/http'
url = URI.parse( 'http://[::1]:8080/test/Test' )
Net::HTTP.get...
darix (Marcus Rückert)
11:19 AM Bug #3788 (Rejected): URI cannot parse IPv6 addresses propertly
=begin
uri lib's structure follows URI RFC; your expectation is wrong.
=end
naruse (Yui NARUSE)
11:46 AM Feature #3793 (Closed): No test for OpenSSL::PKCS12
=begin
As a task.
=end
nahi (Hiroshi Nakamura)
11:25 AM Bug #3150: net/https peer verification doesn't do anything
=begin
Thanks Aaron. Hope we can identify the cause soon.
=end
nahi (Hiroshi Nakamura)
11:22 AM Bug #3400 (Closed): apparent typos in ext/openssl/openssl_missing.{h,c}
=begin
Adrian, I checked the patch and confirmed that all of the fix are for typo. Applied it. Thank you!
=end
nahi (Hiroshi Nakamura)
11:21 AM Bug #3763 (Feedback): 1.9.2-p0 SEGV in String:+
=begin
It seems third party's issue, but can you show C backtrace?
=end
naruse (Yui NARUSE)
11:20 AM Bug #3704: openssl: exception message wording improvement
=begin

=end
nahi (Hiroshi Nakamura)
11:10 AM Bug #3704: openssl: exception message wording improvement
=begin
Paul, I applied the patch as-is. Thanks!
=end
nahi (Hiroshi Nakamura)
10:57 AM Bug #3704 (Closed): openssl: exception message wording improvement
=begin
This issue was solved with changeset r29189.
Paul, thank you for reporting this issue.
Your contribution to...
nahi (Hiroshi Nakamura)
10:51 AM Bug #3786 (Assigned): instance_execにメソッドをわたした場合の挙動
=begin
trunk でも再現しますね
=end
naruse (Yui NARUSE)
10:47 AM Bug #3791 (Closed): Ruby 1.9.2のReadline.readlineとReadline.line_bufferのエンコーディングの非互換
=begin
This issue was solved with changeset r29188.
Motohiro, thank you for reporting this issue.
Your contributio...
naruse (Yui NARUSE)
02:12 AM Bug #3791 (Closed): Ruby 1.9.2のReadline.readlineとReadline.line_bufferのエンコーディングの非互換
=begin
http://emasaka.blog65.fc2.com/blog-entry-802.html からの転載です

$ cat foo.rb
#!/usr/bin/env ruby
# -*- cod...
kosaki (Motohiro KOSAKI)
10:07 AM Bug #3790 (Closed): Float('0x') がエラーにならない
=begin
This issue was solved with changeset r29187.
tadayoshi, thank you for reporting this issue.
Your contributi...
naruse (Yui NARUSE)
09:47 AM Bug #3789 (Closed): Float('0x...') での挙動が不審
=begin
This issue was solved with changeset r29186.
tadayoshi, thank you for reporting this issue.
Your contributi...
naruse (Yui NARUSE)
08:41 AM Bug #3784: Seg fault in IO.select from webrick
Are there codes to reproduce this bug?
mrkn (Kenta Murata)
07:33 AM Bug #3792: Procs created via Method#to_proc and Symbol#to_proc don't pass a block thru
=begin
I think it is spec.

--
Shota Fukumori a.k.a. @sora_h - http://codnote.net/
=end
sorah (Sorah Fukumori)
07:01 AM Bug #3792 (Closed): Procs created via Method#to_proc and Symbol#to_proc don't pass a block thru
=begin
class C
def foo
yield
end
end

f = :foo.to_proc
f.(C.new) { puts 'bar' } rescue p $!
...
tmat (Tomas Matousek)

09/05/2010

10:47 PM Bug #3790 (Closed): Float('0x') がエラーにならない
=begin
Float('0x') がエラーにならない。

Integer('0x') # ArgumentError: invalid value for Integer(): "0x"
Float('0x') #=...
tadf (tadayoshi funaba)
09:46 PM Bug #3696: Fwd: [ruby-list:47272] case when 整数と実数の比較 (ruby 1.9)
=begin
まつもと ゆきひろです

In message "Re: [ruby-dev:42179] [Ruby 1.9-Bug#3696] Fwd: [ruby-list:47272] case when 整数と実数の...
matz (Yukihiro Matsumoto)
09:11 AM Bug #3696: Fwd: [ruby-list:47272] case when 整数と実数の比較 (ruby 1.9)
=begin
ワナベと申します。

パッチありがとうございます。拝見しました。
大筋ではバッチリだと思うのですが、long long を使っているところや
速度的に不利な rb_obj_is_kind_of() を使...
wanabe (_ wanabe)
08:23 PM Feature #3755: Patch for Complex.cis
=begin
cis must be not so important.
and we should add it to CMath if we need.
i think we don't have to adopt th...
tadf (tadayoshi funaba)
08:07 PM Bug #3789 (Closed): Float('0x...') での挙動が不審
=begin
Float() で指数が大きい場合に、零になったり、無限大になったりする。

Float('0xf.fp1000000000000') #=> 0.0
Float('0xf.fp10000000000000...
tadf (tadayoshi funaba)
04:52 AM Bug #3788 (Closed): URI cannot parse IPv6 addresses propertly
=begin
require 'uri'

u = URI::parse( 'http://[::1]:8080/test' )
u.host
=> "[::1]"

**** THIS SHOULD R...
adamm (Adam Majer)
04:22 AM Bug #3787 (Closed): TCPSocket.new() fails on IPv6 connections for IPV4/IPv6 hosts
=begin
$ host localhost
localhost has address 127.0.0.1
localhost has IPv6 address ::1

-----
server setu...
adamm (Adam Majer)
01:11 AM Bug #3786 (Closed): instance_execにメソッドをわたした場合の挙動
=begin
はじめまして。Ruby1.9.2のバグらしきものを発見したので報告します。
以下のコードを実行すると、エラーで落ちます。

バージョンは以下。ちなみに1.9.1では再現しませんでした。
$ /usr/k...
at_akada (Takada Atsushi)

09/04/2010

11:52 AM Feature #3773: Module#parent
=begin
Hi,

In message "Re: [ruby-core:32038] [Ruby 1.9-Feature#3773] Module#parent"
on Fri, 3 Sep 2010 20:03...
matz (Yukihiro Matsumoto)
01:36 AM Bug #3785: unexpected Numeric#step behaviour
=begin
maybe the links posted in this ticket http://redmine.ruby-lang.org/issues/show/3746 help?
=end
darix (Marcus Rückert)
01:32 AM Bug #3785 (Rejected): unexpected Numeric#step behaviour
=begin
ruby-1.9.2-head > -0.5.step(0.5, 0.1) { |x| puts x }
-0.5
-0.4
-0.3
-0.19999999999999996
-0.0999999...
etehtsea (Konstantin Shabanov)

09/03/2010

11:11 PM Bug #3764: Ripper incorrectly handle literal keywords (as symbol, eg. :class)
=begin
No, I don't think that it is a bug.

It doesn't have to be an identifier after colon for a symbol.
":$0...
eitoball (Eito Katagiri)
08:03 PM Feature #3773: Module#parent
=begin
"For objection (c), that's a good point. nil would be a better return value in that case."

I meant, "obj...
trans (Thomas Sawyer)
07:59 PM Feature #3773: Module#parent
=begin
I agree and I have another objection to add.

(c) A constant name is just a reference to an object.

...
trans (Thomas Sawyer)
07:58 PM Bug #3781: FIBER_USE_NATIVE が有効だと落ちるスクリプトがある
=begin
> x86-64 FreeBSD では、差分を当ててみてもほぼ同じように落ちました。

スタックサイズを 16 倍にしたところ、FreeBSD でも落ちなくなりました。
=end
metanest (Makoto Kishimoto)
06:01 PM Bug #3781: FIBER_USE_NATIVE が有効だと落ちるスクリプトがある
=begin
きしもとです

On Fri, 3 Sep 2010 15:30:39 +0900
Satoshi Shiba <[email protected]> wrote:
> 芝と申します。
>
> Makoto Kis...
metanest (Makoto Kishimoto)
10:08 AM Bug #3782 (Feedback): NendoのテストスイートでSEGVが発生する
=begin
同じSnow Leopardの1.9.2で試したが再現しません。
rvmを使っているような気がするんですが、使わないようにしたら正しく動きませんか。
=end
naruse (Yui NARUSE)
06:17 AM Bug #3672 (Closed): PTY.getpty with non exist program
=begin
This issue was solved with changeset r29169.
Yui, thank you for reporting this issue.
Your contribution to ...
nobu (Nobuyoshi Nakada)
06:08 AM Bug #3784 (Closed): Seg fault in IO.select from webrick
I get this intermittently (approximately once a day) on my OSX 10.6.4. I have used rvm to install 1.9.2-p0
~~~
/...
enrico (Enrico Brunetta)

09/02/2010

11:45 PM Feature #2824: Backtrace from Singleton Classes is Unclear
=begin
The attached fixes the typo; improving the error message appears to require knowledge of YARV internals.
=end
runpaint (Run Paint Run Run)
11:03 PM Feature #3131: add Kernel#Hash() method like Kernel#Array()
=begin
I believe the attached patch reflects the consensus between matz and Suraj. The only material difference is t...
runpaint (Run Paint Run Run)
09:32 PM Bug #3769: Removing Predefined Constants
=begin
> Category changed from core to DOC

Assuming this means the docs are at fault, the attached removes the ...
runpaint (Run Paint Run Run)
09:29 PM Bug #3760: help "String.new" (for example) no longer works in irb
=begin
The attached patch should fix this issue. Please review and try the patch.

The "get_info_for" method has...
eitoball (Eito Katagiri)
09:20 PM Bug #3783 (Closed): Replace Calls to rb_error_frozen() with rb_check_frozen()
=begin
This patch replaces lines of the form:
if (OBJ_FROZEN(obj)) rb_error_frozen("object");
with:
rb_che...
runpaint (Run Paint Run Run)
05:54 PM Bug #3780: RDoc::Parser.binary? broken for some utf8 files longer than 1024 bytes
=begin

=end
tenderlovemaking (Aaron Patterson)
06:21 AM Bug #3780 (Closed): RDoc::Parser.binary? broken for some utf8 files longer than 1024 bytes
=begin
RDoc truncates files at 1024 bytes when checking if the file is binary. This will invalidate the file encodin...
stepheneb (Stephen Bannasch)
01:29 PM Bug #3782 (Rejected): NendoのテストスイートでSEGVが発生する
=begin
私の個人的なプロジェクト(Nendo)のテストスイートを実行するとSegmentation FaultでRubyが落ちます。
RSpecで定義したテストスイートをなるべく短かくする努力はしてみたのですが、これが限界...
kiyoka (Kiyoka Nishiyama)
09:23 AM Bug #3781: FIBER_USE_NATIVE が有効だと落ちるスクリプトがある
=begin
きしもとです

[ruby-dev:41391] に
> (2) FIBER_USE_NATIVE を 0 にしとく

とあるんですが #ifdef FIBER_USE_NATIVE としてるので、#unde...
metanest (Makoto Kishimoto)
08:38 AM Bug #3781 (Closed): FIBER_USE_NATIVE が有効だと落ちるスクリプトがある
=begin
手元のスクリプト(再現する最小のケースを絞り込むのが無理そうなので、そのまま添付します)が、FIBER_USE_NATIVE が有効な ruby で落ちます。

x86-64 FreeBSD と i686 L...
metanest (Makoto Kishimoto)
03:27 AM Bug #1813: Threading seg fault (1.9.1-p129 Linux/Mac)
=begin
I am still getting "Illegal Instruction" in 1.9.2-p0 on OSX 10.5.7 (on Ubuntu 9.10 x86_64 I get a SystemStack...
ivan (Ivan Pirlik)
03:06 AM Feature #3447: argument delegation
遠藤です。
2010年8月26日23:28 Yugui <[email protected]>:
> しかし、あまりにも短すぎる。`&`1文字は見落としそうです。
いやあ、考えすぎでしょう。
`func(foo + bar,...
mame (Yusuke Endoh)
12:26 AM Feature #3714: Add getters for Enumerator
=begin
Hi, knu

2010/8/29 Akinori MUSHA <[email protected]>:
> So, it was intentional for me as the original ...
mame (Yusuke Endoh)
12:07 AM Bug #3765 (Rejected): Ripper::Lexer missed out tokens after '=>' operator
=begin
Eito is right.

Ruby lexer has very complex states.
Such an incomplete code fragment may not parse.
Y...
mame (Yusuke Endoh)

09/01/2010

11:15 PM Bug #3765: Ripper::Lexer missed out tokens after '=>' operator
=begin
I think that it is because the provided statement was illegal and Ripper stopped parsing it.

% ruby -v...
eitoball (Eito Katagiri)
02:37 PM Bug #3776 (Closed): mismatch of rdoc in array.c
=begin
This issue was solved with changeset r29157.
Andrei, thank you for reporting this issue.
Your contribution ...
naruse (Yui NARUSE)
02:24 AM Bug #3776 (Closed): mismatch of rdoc in array.c
=begin
--- array.c~ 2010-06-11 07:21:18.000000000 +0300
+++ array.c 2010-08-31 05:36:12.844565473 +0300
@@ -1897...
dre3k (Andrei Kulakov)
02:37 PM Bug #3775 (Closed): typo of rdoc in enum.c
=begin
This issue was solved with changeset r29156.
Andrei, thank you for reporting this issue.
Your contribution ...
naruse (Yui NARUSE)
02:20 AM Bug #3775 (Closed): typo of rdoc in enum.c
=begin
--- enum.c~ 2010-08-19 17:48:25.000000000 +0300
+++ enum.c 2010-08-31 06:13:42.200564470 +0300
@@ -1911,7...
dre3k (Andrei Kulakov)
12:57 PM Bug #3722 (Closed): segfault in rb_iterate (1.9.3, r29057)
=begin
This issue was solved with changeset r29155.
Cezary, thank you for reporting this issue.
Your contribution ...
nobu (Nobuyoshi Nakada)
06:12 AM Bug #3769: Removing Predefined Constants
=begin

=end
nobu (Nobuyoshi Nakada)
04:10 AM Feature #3380: Minitest Runner Command
=begin
Not everyone uses rake... sure. Everyone uses ruby. Changing up the load path is handled by ruby -I. You know...
zenspider (Ryan Davis)
01:09 AM Feature #3773: Module#parent
=begin
Hi,

In message "Re: [ruby-core:31969] [Ruby 1.9-Feature#3773][Open] Module#parent"
on Wed, 1 Sep 2010...
matz (Yukihiro Matsumoto)
12:18 AM Feature #3773 (Rejected): Module#parent
=begin
Not sure "parent" is the best name, it does seem like this functionality should be provided somehow by Ruby ...
trans (Thomas Sawyer)
01:09 AM Bug #3774: irbで日本語が入力できない
=begin
rvm install ruby-head -C --with-readline-dir=/opt/local --enable-readline-v6

だといけました。
=end
xibbar (Takeyuki FUJIOKA)
12:55 AM Bug #3774 (Rejected): irbで日本語が入力できない
=begin
headの方には以下のように出ています。
73 ../.././include/ruby/ruby.h:1419:1: warning: this is the location of the previous d...
naruse (Yui NARUSE)
12:48 AM Bug #3774 (Rejected): irbで日本語が入力できない
=begin
rvm install ruby-head -C --with-readline-dir=/opt/local
でインストールしたirbで日本語を入力できない。
1.9.2だったらできるので、オプションで与えた...
xibbar (Takeyuki FUJIOKA)
 

Also available in: Atom