Project

General

Profile

Activity

From 04/10/2009 to 04/16/2009

04/16/2009

01:55 AM Bug #1322: define_method scope bug
=begin
No, just beacuse no wan had time to look into your patch. Sorry. The situation is confirmed on my machine.
...
shyouhei (Shyouhei Urabe)
01:10 AM Bug #1322: define_method scope bug
=begin
Any reason there have been no responses to this?
=end
coderrr (coderrr .)

04/15/2009

10:51 PM Bug #1367: flatten(0) is not consistent with flatten(), flatten(1), etc.
=begin
Hi,

2009/4/15 Rafael Crivellari Saliba Schouery <[email protected]>:
> Ruby gives you a new array, so I ...
mame (Yusuke Endoh)
09:56 PM Bug #1367: flatten(0) is not consistent with flatten(), flatten(1), etc.
=begin
I thought about that too.
I was think about other functions. sort, of course, is going to give you a
new ar...
schouery (Rafael Schouery)
08:57 PM Bug #1367 (Closed): flatten(0) is not consistent with flatten(), flatten(1), etc.
=begin
Applied in changeset r23191.
=end
mame (Yusuke Endoh)
07:11 PM Bug #1367: flatten(0) is not consistent with flatten(), flatten(1), etc.
=begin
As a pro-fix argument consider what happens when the code using flatten has a dynamic depth value. So rather...
pjlewis (Paul Lewis)
05:46 AM Bug #1367: flatten(0) is not consistent with flatten(), flatten(1), etc.
=begin
I did take a look in the problem:

static VALUE
rb_ary_flatten(int argc, VALUE *argv, VALUE ary)
{
in...
schouery (Rafael Schouery)
07:52 PM Bug #1381: Confusing Encoding Error
=begin
This patch fix the problem, but may cause another one. I don't understand the purpose of the original code.
...
ujihisa (Tatsuhiro Ujihisa)
06:32 AM Bug #1381 (Closed): Confusing Encoding Error
=begin
When I reuse a Regexp object, the Encoding seems unchanged but an error message can report something differen...
JEG2 (James Gray)
06:12 PM Bug #1382 (Closed): inline functions ought to be static
=begin
While compiling Ruby with ongoing versions of clang/llvm, it appeared that rb_reserved_word, an inline functi...
roberto (Ollivier Robert)
12:07 PM Bug #1379 (Closed): Dir.glob should not convert entries on UNIX
=begin
Applied in changeset r23190.
=end
naruse (Yui NARUSE)
11:36 AM Bug #634: Time parsing works in 1.8 but not 1.9
=begin
should Date.parse("4/30/2009")
parse in 1.9?

>> Date.parse("4/30/2009")
ArgumentError: invalid date
...
rogerdpack (Roger Pack)

04/14/2009

09:10 PM Bug #1379 (Closed): Dir.glob should not convert entries on UNIX
=begin
こんばんは sheepman です。

r23189 の適用後でも以下のように Shift_JIS のファイル名がある場合に
例外が発生しますが、これはこういうものでしょうか。Dir.glob の目的から
言っ...
sheepman (Takashi Tamura)
06:17 PM Bug #1378 (Closed): Dir.glob should not convert entries on UNIX
=begin
Applied in changeset r23189.
=end
nobu (Nobuyoshi Nakada)
04:23 PM Bug #1378 (Closed): Dir.glob should not convert entries on UNIX
=begin
ujihisaといいます。

r23171 から、bracketを含むDir.globがうまく動いていませんでした。
$ ./ruby -e "p Dir.glob('/[ae]tc/')"
[]

以下は...
ujihisa (Tatsuhiro Ujihisa)
05:22 PM Bug #1336: Change in string representation of Floats
=begin

On Apr 13, 2009, at 00:19 , Eero Saynatkari wrote:

> I think I am in agreement, but I would like to ame...
zenspider (Ryan Davis)
03:06 PM Bug #1336: Change in string representation of Floats
=begin
Gary Wright wrote:
>
> I don't think it is even possible unless you introduce binary (or maybe
> hex) flo...
shyouhei (Shyouhei Urabe)
02:22 PM Bug #1336: Change in string representation of Floats
=begin
Yukihiro Matsumoto wrote:
> The reason for the change (increased precision) was too many people do
> not un...
headius (Charles Nutter)
02:05 PM Bug #1336: Change in string representation of Floats
=begin
Hi,

In message "Re: [ruby-core:23189] Re: [Bug #1336] Change in string representation of Floats"
on M...
matz (Yukihiro Matsumoto)
01:45 PM Bug #1336: Change in string representation of Floats
=begin
currently (for curiosity sake) trunk does:

>> [1,2,3].to_s
=> "[1, 2, 3]"
>> [1,2,3].inspect
=> "[...
rogerdpack (Roger Pack)
02:25 AM Feature #1377: Please provide constant File::NOATIME
=begin
For the curious, my intended use for this is in http://launchpad.net/foton when scanning for images.
=end
walles (Johan Walles)
02:19 AM Feature #1377 (Closed): Please provide constant File::NOATIME
=begin
I would like to be able to specify File::NOATIME mode when opening a file through File.new():

irb(main):...
walles (Johan Walles)

04/13/2009

05:28 PM Bug #1376: inline symbols/fixnums in a case expression do not honor an overwritten #=== method
=begin
In case of variable, it works.

class Symbol
def ===(o)
p 42
true
end
end

# th...
phasis68 (Heesob Park)
02:45 PM Bug #1376 (Closed): inline symbols/fixnums in a case expression do not honor an overwritten #=== method
=begin
The case expression in Ruby 1.9 does not seem to honor the fact that Symbol#=== could have been overwritten p...
lrz (Laurent Sansonetti)
04:19 PM Bug #1336: Change in string representation of Floats
=begin
Excerpts from Yukihiro Matsumoto's message of Mon Apr 13 05:17:28 +0300 2009:
> Perhaps we need 3 ways for s...
rue (Eero Saynatkari)
01:12 PM Bug #1336: Change in string representation of Floats
=begin

I'm not sure I understand the difference between "mere string" and "human
readable" representations.
Coul...
brent (Brent Roman)
11:17 AM Bug #1336: Change in string representation of Floats
=begin
Hi,

In message "Re: [ruby-core:23187] Re: [Bug #1336] Change in string representation of Floats"
on M...
matz (Yukihiro Matsumoto)
10:55 AM Bug #1336: Change in string representation of Floats
=begin

Perhaps I'm not understanding the question.
Consider:

s = "string"
s.inspect ==> "string" #this w...
brent (Brent Roman)
07:28 AM Bug #1336: Change in string representation of Floats
=begin
Hi,

In message "Re: [ruby-core:23181] Re: [Bug #1336] Change in string representation of Floats"
on S...
matz (Yukihiro Matsumoto)
12:58 PM Bug #1375 (Closed): Zlib::GzipReaderに対するエンコーディング指定
=begin
Zlib::GzipReaderでエンコーディングを指定しても効果がないようですが、これはそういうもので、
読んだ結果を適宜エンコーディングするのが正しいやり方でしょうか。

$irb -rzlib --p...
sakuro (Sakuro OZAWA)

04/12/2009

03:59 AM Bug #1336: Change in string representation of Floats
=begin

Your latter example seems quite nice.
Especially if it would accept unabbreviated forms such as this:

0...
brent (Brent Roman)
03:53 AM Bug #1336: Change in string representation of Floats
=begin

I'd prefer that Float#to_s => rounded, Float#inspect => non rounded
(i.e. 0.9.inspect => "0.8999999999")
...
brent (Brent Roman)

04/11/2009

04:03 PM Bug #1336: Change in string representation of Floats
=begin
Hi,

At Sat, 11 Apr 2009 15:17:24 +0900,
Roger Pack wrote in [ruby-core:23179]:
> Is this satisfactory, o...
nobu (Nobuyoshi Nakada)
03:17 PM Bug #1336: Change in string representation of Floats
=begin
I like the recent change. Now it acts like this:

>> 0.9
=> 0.9
>> 2.1 - 3.0
=> -0.89999999999999...
rogerdpack (Roger Pack)
03:42 PM Feature #1031 (Assigned): -U オプションの説明が --help にない
=begin

=end
nobu (Nobuyoshi Nakada)
01:11 PM Feature #1031: -U オプションの説明が --help にない
=begin
権限のある方、ステータスを Assigned に変更してください。
=end
sakuro (Sakuro OZAWA)
11:41 AM Feature #1374 (Closed): location of already initialized constant
=begin
なかだです。

初期化済み定数の警告で、定義された場所を表示するのはどうでしょうか。

$ ./ruby -e X=1 -e X=2
-e:2: warning: already initiali...
nobu (Nobuyoshi Nakada)

04/10/2009

09:18 AM Bug #1372: Kernel.catch not accepting &block
=begin
Suraj Kurapati wrote::
> $ cat catch.rb
> b = lambda { throw :foo }
> catch :foo, &b
...
> catch.rb:2:i...
ko1 (Koichi Sasada)
06:51 AM Bug #1372 (Closed): Kernel.catch not accepting &block
=begin
Please observe:


$ cat catch.rb
b = lambda { throw :foo }
catch :foo, &b


$ multiruby catc...
sunaku (Suraj Kurapati)
 

Also available in: Atom