Activity
From 04/07/2012 to 04/13/2012
04/13/2012
-
11:07 PM Bug #6288 (Feedback): Change error message for thread block to be less misleading
- Is "possible deadlock detected" better?
Please elaborate "a more complex scenario" with small example.
--
Yus... -
06:51 PM Bug #6288 (Closed): Change error message for thread block to be less misleading
- Test case:
11:50:07 ~$ ruby19 -r thread -e 'q=SizedQueue.new 10;1_000_000.times {|i| p i;q.enq i}'
0
1
2
3
4
... -
10:58 PM Feature #6287 (Assigned): nested method should only be visible by nesting/enclosing method
- Hello,
There is a similar proposal #4085 based on more general idea.
Below is my personal opinion.
Ruby's ... -
05:34 PM Feature #6287: nested method should only be visible by nesting/enclosing method
- I know what you mean, but I think this is a limitation of Ruby's OOP nature. In Ruby, everything belongs to an objec...
-
04:55 PM Feature #6287 (Closed): nested method should only be visible by nesting/enclosing method
- > def test1
def test2
p "i am test2"
end
test2
end
> test1
"i am test2" # ok
> test2 ... -
08:51 PM Feature #5663: Combined map/select method
- +1
-
11:21 AM Feature #5663: Combined map/select method
- matz (Yukihiro Matsumoto) wrote:
> I am OK with the original map_select behavior, but I don't like the name #map_sel... -
05:58 PM Feature #6286: Add Exception#format method
- It is actually surprising that the formatting of exception is not provided by the Exception class. I realise that it ...
-
05:40 PM Feature #6286: Add Exception#format method
- nobu (Nobuyoshi Nakada) wrote:
> Why and how would it be nice?
I'm trying to develop Ruby support for ABRT [1].... -
05:10 PM Feature #6286 (Feedback): Add Exception#format method
- vo.x (Vit Ondruch) wrote:
> It would be nice if Exception class could be extended by #format method (or method with ... -
04:53 PM Feature #6286 (Closed): Add Exception#format method
- It would be nice if Exception class could be extended by #format method (or method with some more suitable name), whi...
-
05:53 PM Feature #6236: WEBrick::HTTPServer swallows Exception
- On 13/04/12 09:01, naruse (Yui NARUSE) wrote:
>
> Issue #6236 has been updated by naruse (Yui NARUSE).
>
> Statu... -
05:01 PM Feature #6236 (Closed): WEBrick::HTTPServer swallows Exception
- This ticket looks intended to allow ^C shutting down the server.
So current change to shutdown other than StandardEr... -
05:25 AM Feature #6236: WEBrick::HTTPServer swallows Exception
- =begin
I misunderstood the intended use of start/stop/shutdown, so I think your patch should be applied.
I assume... -
02:56 PM Feature #6284: Add composition for procs
- What about `#*` for composing traditionally (right to left) and `#|` for piping (left to right)? In mathematics, depe...
-
08:59 AM Feature #6284: Add composition for procs
- aprescott (Adam Prescott) wrote:
> See also: http://web.archive.org/web/20101228224741/http://drmcawesome.com/Functi... -
07:53 AM Feature #6284 (Assigned): Add composition for procs
-
06:53 AM Feature #6284: Add composition for procs
- See also:
http://web.archive.org/web/20101228224741/http://drmcawesome.com/FunctionCompositionInRuby -
06:26 AM Feature #6284: Add composition for procs
- I would vote for `#*`. I think `#<<` is usually changing the left argument (in place).
-
02:02 AM Feature #6284: Add composition for procs
- trans (Thomas Sawyer) wrote:
> Also, I think `#+` is better.
I saw facets has some similar feature that uses `#*`... -
09:57 AM Bug #6283: Segmentation fault pg_ext.bundle
- This ticket has roughly the same stack trace as #6281
-
09:25 AM Feature #4969 (Rejected): Subtle issue with require
- If you still need this, please make the issue clear and refine the proposal, then reopen this or file a new ticket.
-
07:54 AM Feature #6277 (Assigned): Hash#convert_key
-
06:03 AM Bug #6285 (Assigned): Documents of IO#read, IO#readpartial, etc. should describe how they are executed when second argument is not empty String
-
02:47 AM Bug #6285 (Closed): Documents of IO#read, IO#readpartial, etc. should describe how they are executed when second argument is not empty String
- IO#read, IO#readpartial, IO#read_nonblock, and IO#sysread methods can receive a String object as second argument ((|o...
-
05:27 AM Feature #6225: Hash#+
- How about `Hash#|` for `Hash#reverse_merge`, and `Hash#|=` for `Hash#reverse_merge!` from *Rails*? (Instead of `#+` f...
-
04:00 AM Feature #6225: Hash#+
- Martin, _in math_, it is common to use `*` for both commutative and non-commutative operations but `+` for only commu...
-
01:10 AM Bug #6282: strptime and fractions of seconds
- Great!. Thanks.
-
12:27 AM Bug #6282: strptime and fractions of seconds
- lparra (Luis Parravicini) wrote:
> I know, but where on the docs say so?
r35312 adds the doc.
04/12/2012
-
11:36 PM Feature #6225: Hash#+
- @jacksonwillis `#<<` makes sense as an alias for `#update`, not `#merge`. However I use `Hash#<<` with this meaning:
... -
11:28 PM Feature #6284: Add composition for procs
- Also, I think `#+` is better.
-
11:25 PM Feature #6284: Add composition for procs
- Or
```ruby
format_as_title = ->{ |val| add_header[to_camel[val.strip]] }
```
-
03:21 PM Feature #6284 (Closed): Add composition for procs
- It would be nice to be able to compose procs like functions in functional programming languages:
```ruby
to_camel... -
08:48 PM Bug #6282: strptime and fractions of seconds
- I know, but where on the docs say so?
-
07:35 PM Bug #6282 (Rejected): strptime and fractions of seconds
- strptime does not support such an extension.
-
10:12 AM Bug #6282 (Assigned): strptime and fractions of seconds
-
05:57 AM Bug #6282 (Rejected): strptime and fractions of seconds
- =begin
DateTime::strptime refers us to #strftime to check the format to use.
DateTime#strftime says fractions of se... -
07:00 PM Bug #982: stack level too deep for long Array initialization
- 前田です。
ko1 (Koichi Sasada) wrote:
> なおしました.
> 命令をいじるのではなく,core メソッドを呼ぶようにしてみました.
> ちょっと,余計な配列が増えちゃうのが良くないかも....
... -
10:51 AM Bug #982 (Closed): stack level too deep for long Array initialization
- なおしました.
命令をいじるのではなく,core メソッドを呼ぶようにしてみました.
ちょっと,余計な配列が増えちゃうのが良くないかも....
誰か性能評価してくれると助かります.
-
06:23 PM Feature #6236: WEBrick::HTTPServer swallows Exception
- On 11/04/12 21:31, drbrain (Eric Hodel) wrote:
>
> Issue #6236 has been updated by drbrain (Eric Hodel).
>
>... -
10:53 AM Feature #6236 (Assigned): WEBrick::HTTPServer swallows Exception
- r35303 looks buggy.
WERBrick::GenericServer#stop's is a method to deny a new connection.
Even if the method is ca... -
07:53 AM Feature #6236: WEBrick::HTTPServer swallows Exception
- Oops, sorry. Nahi-san, could you please review drbrain's commit (r35303) ?
2012/4/12 nahi (Hiroshi Nakamura... -
06:00 AM Feature #6236: WEBrick::HTTPServer swallows Exception
- WEBrick has a maintainer now :)
-
05:31 AM Feature #6236: WEBrick::HTTPServer swallows Exception
- I extended Alex's patch to include safe shutdown and to allow ^C to work from within accept_client.
Since each con... -
05:28 AM Feature #6236 (Closed): WEBrick::HTTPServer swallows Exception
- This issue was solved with changeset r35303.
Alex, thank you for reporting this issue.
Your contribution to Ruby is g... -
04:49 PM Bug #5258: SizedQueueにBug #5195と同様のバグ
- Hi again,
mame (Yusuke Endoh) wrote:
> 2012/4/11 rklemme (Robert Klemme) <[email protected]>:
> > nob... -
12:29 AM Bug #5258: SizedQueueにBug #5195と同様のバグ
- Hello,
2012/4/11 rklemme (Robert Klemme) <[email protected]>:
> nobu (Nobuyoshi Nakada) wrote:
>> It s... -
02:36 PM Bug #6283 (Feedback): Segmentation fault pg_ext.bundle
- What is "a Rails project" ?
Anyway it seems Third Party's Issue. -
01:42 PM Bug #6283 (Closed): Segmentation fault pg_ext.bundle
- *Steps to reproduce:*
1. rvm reinstall 1.9.3 --with-openssl-dir=/usr/local
2. Install a Rails project that uses 1... -
11:19 AM Bug #6281 (Feedback): 1.9.3-p125 crashes when using therubyracer 0.9.10
- I can't reproduce it.
I think you should reinstall therubyracer.
Anyone can do? -
12:52 AM Bug #6281 (Rejected): 1.9.3-p125 crashes when using therubyracer 0.9.10
- I'm on Mac OS X 10.7.3, and I'm unable to run 1.9.3-p125 when I require therubyracer 0.9.10. Note that ruby 1.9.3-p0...
-
10:42 AM Bug #6066: Fix "control may reach end of non-void function" warnings for clang
- Feel free.
-
06:35 AM Bug #6066: Fix "control may reach end of non-void function" warnings for clang
- Nobu, may I commit this?
-
07:11 AM Feature #4551 (Closed): uri.set_scheme should downcase schemes
- This issue was solved with changeset r35305.
Eric, thank you for reporting this issue.
Your contribution to Ruby is g... -
06:20 AM Feature #6088 (Closed): Add Net::ReadTimeout to distinguish which operation failed
- This issue was solved with changeset r35304.
Eric, thank you for reporting this issue.
Your contribution to Ruby is g... -
03:28 AM Bug #6203: Array#values_at does not handle ranges with end index past the end of the array
- naruse (Yui NARUSE) wrote:
> marcandre (Marc-Andre Lafortune) wrote:
> > I simply want to lighten the load for Matz...
04/11/2012
-
11:37 PM Bug #5258: SizedQueueにBug #5195と同様のバグ
- nobu (Nobuyoshi Nakada) wrote:
> It seems natural because the only thread is about to sleep.
I would expect the t... -
08:09 PM Bug #5258: SizedQueueにBug #5195と同様のバグ
- It seems natural because the only thread is about to sleep.
-
07:43 PM Bug #5258: SizedQueueにBug #5195と同様のバグ
- This is also present in 1.9.3 and there is an even simpler test case:
$ ruby19 -r thread -e 'q=SizedQueue.new 10;1... -
09:05 PM Bug #6271 (Closed): textmode File#read on CRLF
- This issue was solved with changeset r35296.
riskwa, thank you for reporting this issue.
Your contribution to Ruby is... -
06:34 PM Feature #1873: MatchData#[]: Omits All But Last Captures Corresponding to the Same Named Group
- I've attached a new patch -- this implements the same functionality but refers to it as `all_values` and reverts the ...
-
03:57 PM Bug #6223 (Closed): Strange crash in GC while thread creation - 1.9.2 only
-
03:49 PM Bug #6223: Strange crash in GC while thread creation - 1.9.2 only
- Ok, with 1.9.3p125 works.
-
11:19 AM Feature #6276: to_h as explicit conversion to Hash
- Great.
I'll do it with pleasure, expect a slight delay as I'm going in vacation for 10 days.
Thanks -
09:40 AM Feature #6276: to_h as explicit conversion to Hash
- OK, accepted, include adding nil.to_h.
Marc, could you make patch and check in?
Matz.
-
12:06 AM Feature #6276 (Closed): to_h as explicit conversion to Hash
- Dear Matz.
We should establish #to_h as the method for explicit conversion to Hash:
1) Add Hash#to_h: returns `... -
07:56 AM Feature #6130: inspect using to_s is pain
- Eregon (Benoit Daloze) wrote:
> I've been working on this and wondered what to do if there is no instance variable. ... -
07:34 AM Feature #5219 (Closed): Array#pack should warn (or raise) if an invalid pack string is given
- This issue was solved with changeset r35292.
Eric, thank you for reporting this issue.
Your contribution to Ruby is g... -
06:31 AM Bug #6278: in `join': deadlock detected (fatal)
- I'm the one who originally came across this issue and wrote the program that triggers this bug (the poorly-named cpu_...
-
06:01 AM Bug #6278: in `join': deadlock detected (fatal)
- Thank you for your analysis.
Because I can't understand this situation yet, I'll check it later.
# Can I reproduc... -
03:48 AM Bug #6278 (Closed): in `join': deadlock detected (fatal)
- There is a race condition between native_sleep(), thread_start_func_2() where thread_start_func_2() holds the gvl loc...
-
06:11 AM Bug #6161 (Closed): Document interpretation of backslashes in string transliterations
- This issue was solved with changeset r35291.
John, thank you for reporting this issue.
Your contribution to Ruby is g... -
05:15 AM Bug #6107 (Closed): Documentation Abbrev (stdlib) confusing
- This issue was solved with changeset r35290.
siep, thank you for reporting this issue.
Your contribution to Ruby is g... -
05:09 AM Bug #6211: Ripper lexes :on_rbrace when it should find :on_embexpr_end
- Hooray! Thank you!
-
03:46 AM Bug #953: 深い入れ子の配列の取り扱いで落ちる
- わたしの FreeBSD 9.0 amd64 や Ubuntu 10.04 x64 では再現しますね
-
03:30 AM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
- Hi Yura,
If nobody reviews months, I'll reveiw this. The description is completely sane. :) -
02:51 AM Feature #5555: rename #include? to #includes?
- Thanks for the explanation, i didn't know about "key?".
-
01:12 AM Feature #6277 (Assigned): Hash#convert_key
- =begin
Many times a hash with uniform keys is needed (or is at least preferable) for a particular usecase. To this e...
04/10/2012
-
10:31 PM Feature #6130: inspect using to_s is pain
- mame (Yusuke Endoh) wrote:
> I'm not sure if it is trivial to fix this issue.
> Could anyone please create a patch ... -
10:25 PM Feature #6265: Remove 'useless' 'concatenation' syntax
- trans (Thomas Sawyer) wrote:
> The only time I have found it useful is with `\` for multi-line string, for things li... -
10:24 PM Feature #6265: Remove 'useless' 'concatenation' syntax
- The only time I have found it useful is with `\` for multi-line string, for things like entry in Ruby based-config fi...
-
05:40 PM Feature #6265: Remove 'useless' 'concatenation' syntax
- I think it is nice to have a syntax to concatenate strings in compile time. I do not think that missing commas are h...
-
09:49 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- ko1 (Koichi Sasada) wrote:
> I prefer current behavior because it is same as C and it is easy to
> remember.
... -
07:23 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- (2012/04/10 7:01), Rodrigo Rosenfeld Rosas wrote:
> Hi Koichi, I created this issue because I did have this proble... -
07:23 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- Em 09-04-2012 16:06, SASADA Koichi escreveu:
> (2012/04/09 14:19), Yukihiro Matsumoto wrote:
>> I agree with mak... -
04:23 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- (2012/04/09 14:19), Yukihiro Matsumoto wrote:
> I agree with making it deprecated. It is up to you to make it war... -
01:23 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- Em 09-04-2012 12:53, Nobuyoshi Nakada escreveu:
> Hi,
>
> (12/04/09 22:46), rosenfeld (Rodrigo Rosenfeld Rosas... -
12:59 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- Hi,
(12/04/09 22:46), rosenfeld (Rodrigo Rosenfeld Rosas) wrote:
> Also, while on the subject, don't you thin... -
10:19 PM Feature #5008 (Rejected): Equal rights for Hash (like Array, String, Integer, Float)
- Submit new issue for new proposal, e.g. adding hash conversion method to Struct etc.
The reason I hesitate to add ... -
10:07 PM Feature #5008 (Open): Equal rights for Hash (like Array, String, Integer, Float)
- Hi,
matz (Yukihiro Matsumoto) wrote:
> #to_hash protocol expects the object to be hash-compatible. Struct is not... -
06:48 PM Feature #5008 (Rejected): Equal rights for Hash (like Array, String, Integer, Float)
- #to_hash protocol expects the object to be hash-compatible. Struct is not the case.
Matz.
-
08:57 PM Bug #4443: odd evaluation order in a multiple assignment
- まあ、それはそれでいいかなと思います。
ちなみに ISO とかの標準的にはどうなってるんでしょう?
--
Yusuke Endoh <[email protected]> -
06:35 PM Bug #4443: odd evaluation order in a multiple assignment
- Cから受け継いだ代入の評価順が「おかしい」のが原因である(本来は a → b と表記すべきか)ことを考えると、
むしろ foo[0] = bar が :bar, :fooと動作するようにすべきでしょうか。
いや、単なる思いつき... -
07:07 PM Feature #5650 (Closed): Add rb_enc_raise() to allow C extensions to raise errors with messages with correct encoding
- This issue was solved with changeset r35283.
Nikolai, thank you for reporting this issue.
Your contribution to Ruby i... -
06:53 PM Feature #3845 (Rejected): "in" infix operator
- This proposal is only for cosmetics.
I don't want a new operator that does not introduce something new.
Matz.
-
06:51 PM Feature #3963 (Rejected): Map class in standard library
- I reject the original idea of Map inclusion to the core. Map and Hash are too similar.
Matz.
-
06:48 PM Feature #4862 (Rejected): Struct#to_hash
- #to_hash protocol expects the object to be hash-compatible. Struct is not the case.
Matz.
-
06:47 PM Bug #4307 (Rejected): include fails after undef_method
- lsegal's comment is right. undef_methods defies the definition of upper classes, include mixed modules.
So, this is... -
06:43 PM Feature #4574 (Rejected): Numeric#within
- I reject this propsal, since the name discussion diverged.
If someone really wants this feature (and believes #clamp... -
06:27 PM Feature #4265 (Rejected): Provide a core method Kernel#ruby for invoking a new Ruby instance
- No good name candidate. Maybe done via MVM change.
Matz.
-
06:25 PM Feature #4086 (Rejected): Feature request: add String#contain? and {Enumerable,Array}#contain? methods
- The proposal is ambiguous. Only valid point I see is String#contain? might be more intuitive than String#include?, b...
-
06:23 PM Feature #5605 (Closed): [PATCH] net/http: use IO.copy_stream for requests using body_stream
- This issue was solved with changeset r35281.
Eric, thank you for reporting this issue.
Your contribution to Ruby is g... -
05:15 AM Feature #5605: [PATCH] net/http: use IO.copy_stream for requests using body_stream
- I prefer the original too.
-
05:19 PM Bug #953 (Feedback): 深い入れ子の配列の取り扱いで落ちる
- 随分前のチケットに対してすみません.
こちら,まだ再現するでしょうか.手元の環境では,
動いちゃったり,stack level too deep (SystemStackError)
だったりで,それなりにちゃんと動いているよう... -
03:39 PM Feature #5716 (Closed): duplicated when clause is ignored -> Report which clause it is specifically.
- This issue was solved with changeset r35277.
markus, thank you for reporting this issue.
Your contribution to Ruby is... -
03:27 PM Feature #6260 (Feedback): Relationship of collating sequence to === and <=> for Strings not documented
- Hello,
Could you (or anyone) please make a draft in rdoc style?
Akr, could you please review the draft?
--
Y... -
03:21 PM Bug #6269 (Assigned): Process.spawn does not work with Tempfile
- Nobu has a patch. I know.
--
Yusuke Endoh <[email protected]> -
03:18 PM Bug #6275: symbol not found: _environ on Mac OS X
- Ok please go ahead.
--
Yusuke Endoh <[email protected]> -
03:00 PM Bug #6275: symbol not found: _environ on Mac OS X
- The patch seems fine, and hash.c has similar code already.
-
02:42 PM Bug #6275 (Assigned): symbol not found: _environ on Mac OS X
- Sorah, do you know anything about this?
--
yusuke Endoh <[email protected]> -
07:50 AM Bug #6275 (Closed): symbol not found: _environ on Mac OS X
- 1. download latest ruby
2. download vim7.3 and built with ruby support
3. run vim73, and type: ruby puts "ruby" at ... -
02:41 PM Bug #6262 (Assigned): [readline] reverse-i-search with multibyte chars
-
02:38 PM Bug #6249 (Assigned): Process.exec doesn't restore the environment if it fails
-
02:36 PM Feature #4168: WeakRef is unsafe to use in Ruby 1.9
- Correct.
Do you have any suggestion? -
01:02 AM Feature #4168: WeakRef is unsafe to use in Ruby 1.9
- I'd like to clarify the fix here.
* ObjectSpace::WeakMap was added as a "proper" weak reference map
* WeakRef use... -
02:35 PM Feature #6244 (Assigned): Removal of some unused functions from /ext/json/fbuffer/fbuffer.h
-
02:33 PM Bug #6170 (Rejected): Compile error: "implicit declaration of function 'pthread_get_stackaddr_np'", "'pthread_get_stacksize_np'"
- Mac OS X prior to 10.5 has not been supported ever.
-
02:00 PM Bug #6170 (Assigned): Compile error: "implicit declaration of function 'pthread_get_stackaddr_np'", "'pthread_get_stacksize_np'"
- Sorah, do you know anything about this error?
--
Yusuke Endoh <[email protected]> -
02:32 PM Feature #6236: WEBrick::HTTPServer swallows Exception
- This is not a bug, is it? Moving to the feature tracker.
And there is no maintainer of WEBrick. I tentatively as... -
02:07 PM Bug #6174 (Assigned): Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
-
01:57 PM Feature #6154 (Assigned): Eliminate extending WaitReadable/Writable at runtime
- I think it is suitable to handle this issue in the feature tracker.
--
Yusuke Endoh <[email protected]> -
12:47 PM Bug #6274 (Rejected): Float addition incorrect
- This is due to the fact that floats are approximate. The results follow the IEEE standard. Try it in Javascript, you'...
-
05:10 AM Bug #6274 (Rejected): Float addition incorrect
- Adding decimals with repeating values appears to lead to an error in returned value.
For example if you inspect:
... -
09:57 AM Feature #3575 (Closed): String#split is inconsistent with empty string and negative limit
- This issue was solved with changeset r35275.
Conrad, thank you for reporting this issue.
Your contribution to Ruby is... -
09:48 AM Bug #6273 (Closed): confusing rdoc on Zlib
- This issue was solved with changeset r35273.
Luis, thank you for reporting this issue.
Your contribution to Ruby is g... -
07:05 AM Feature #6201: do_something then return :special_case (include "then" operator)
- Eregon (Benoit Daloze) wrote:
> Yes, and the "." match well ";" if you see what I mean in my return statement.
So... -
03:45 AM Feature #6201: do_something then return :special_case (include "then" operator)
- rosenfeld (Rodrigo Rosenfeld Rosas) wrote:
> Just forget about this then. By the way, did you like the pun? ;)
Ye... -
02:18 AM Feature #6201: do_something then return :special_case (include "then" operator)
- You're right, Benoit, I completely forgot about the case statements.
Just forget about this then. By the way, did ... -
02:12 AM Feature #6201: do_something then return :special_case (include "then" operator)
- rosenfeld (Rodrigo Rosenfeld Rosas) wrote:
> My understanding is that adding a new keyword to Ruby will break backwa... -
01:32 AM Feature #6201: do_something then return :special_case (include "then" operator)
- Sorry if I'm being boring here. Just let me know and I'll never ask about this again.
My understanding is that add... -
02:07 AM Bug #6230: [WEBrick] WEBrick::HTTPResponse#body の IO オブジェクトの読み込みに read メソッドを使っているため必要以上にブロックされる
- znz さん、naruse さん、
なるほど、確かにそうするのが良いですね。
ありがとうございます。
04/09/2012
-
11:10 PM Feature #3399 (Closed): UNC path is not handled properly
- This issue was solved with changeset r35271.
jojelino, thank you for reporting this issue.
Your contribution to Ruby ... -
10:52 PM Feature #6265: Remove 'useless' 'concatenation' syntax
- Hi Yusuke, I guessed it was a joke, but I couldn't get it at that time. Actually I had a hard time reading "CONCAT" i...
-
10:46 PM Feature #6265: Remove 'useless' 'concatenation' syntax
- Thank you very much! I do also agree that we should warn users so that they have some time to change their "\" style ...
-
02:23 PM Feature #6265: Remove 'useless' 'concatenation' syntax
- Hi,
In message "Re: [ruby-core:44207] [ruby-trunk - Feature #6265] Remove 'useless' 'concatenation' syntax"
o... -
12:43 PM Feature #6265: Remove 'useless' 'concatenation' syntax
- Matz,
> I agree with removing string concatenation in 3.0.
Okay. Then, is the syntax deprecated in 2.0?
If so... -
08:04 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- I agree with removing string concatenation in 3.0.
-
10:49 PM Bug #6246: 1.9.3-p125 intermittent segfault
- Dennis, looking at your ruby trace, it looks like you've run into something else
It appears that you are on osx, a... -
09:51 PM Feature #4168 (Closed): WeakRef is unsafe to use in Ruby 1.9
- I believe so.
If something goes wrong, please reopen this or file a new ticket. -
09:46 PM Bug #6271 (Assigned): textmode File#read on CRLF
-
12:52 AM Bug #6271: textmode File#read on CRLF
- I tested the code above in some environments.
(a) ruby 1.9.3p125 (2012-02-16 revision 34643) [i386-cygwin] : works f... -
07:05 PM Bug #6267 (Closed): Segmentation fault when exponentiating complex number
- tadf fixed it at r35265.
-
06:55 AM Bug #6267 (Open): Segmentation fault when exponentiating complex number
- the following still does
Complex(0,1)**2 -
02:53 AM Bug #6267 (Closed): Segmentation fault when exponentiating complex number
- This issue was solved with changeset r35262.
Pablo, thank you for reporting this issue.
Your contribution to Ruby is ... -
05:48 PM Bug #6235: Call to malloc not checked in thread_pthread.c
- I'll fix it.
-
05:48 PM Feature #5716: duplicated when clause is ignored -> Report which clause it is specifically.
- Hi Koichi Sasada!
I have not tested it yet (will do so at the end of this week),
but I believe it will help me.
... -
02:23 PM Feature #5716: duplicated when clause is ignored -> Report which clause it is specifically.
- Thank you for your comment.
I added a small hint on it because if duplicated object was too big, the
output s... -
03:16 PM Bug #6211 (Closed): Ripper lexes :on_rbrace when it should find :on_embexpr_end
- This issue was solved with changeset r35269.
Steve, thank you for reporting this issue.
Your contribution to Ruby is ... -
01:53 PM Feature #5446: at_fork callback API
- "mame (Yusuke Endoh)" <[email protected]> wrote:
> Do you still want this feature?
Yes, but lower priority.
... -
01:07 PM Feature #4234 (Closed): Hash#default_proc= Doesn't Accept nil Argument
- This issue was solved with changeset r35268.
Run Paint, thank you for reporting this issue.
Your contribution to Ruby... -
08:14 AM Feature #4234: Hash#default_proc= Doesn't Accept nil Argument
- Agreed. Marc, could you check this patch in (with document update)?
Matz.
-
12:53 PM Feature #5605: [PATCH] net/http: use IO.copy_stream for requests using body_stream
- "naruse (Yui NARUSE)" <[email protected]> wrote:
> Issue #5605 has been updated by naruse (Yui NARUSE).
>
> T... -
05:23 AM Feature #5605: [PATCH] net/http: use IO.copy_stream for requests using body_stream
- The original patch looks better than [ruby-core:40903]'s.
drbrain, do you have any idea?
If no one object it, I'l... -
11:00 AM Feature #5669: Random thread scheduling based on a seed
- I want to reject it.
reasons:
(1) It is difficult to implement it in portable way.
(2) I have a doubt about ... -
08:23 AM Feature #6270 (Rejected): add "??a" support for "not defined?(a) or a.nil?"
- As Eric pointed out, it's conflicting existing syntax. I don't reject the basic idea (though I am excited), so try a...
-
01:33 AM Feature #6270: add "??a" support for "not defined?(a) or a.nil?"
- =begin
This syntax seems too similar to the ?a character string syntax
Currently ?a returns "a", so how would the... -
08:12 AM Feature #5632: Attempt to open included class shades it instead.
- Quite reasonable. But the change would introduce serious incompatibility, so that we can not make this happen in 2.0....
-
07:07 AM Bug #6273 (Closed): confusing rdoc on Zlib
- =begin
The rdoc at ext/zlib/zlib.c gives some examples of code to deflate/inflate a string. If you try to use them t... -
12:44 AM Bug #6247 (Assigned): Range not checked for day of year
-
12:38 AM Bug #6228 (Assigned): [mingw] Errno::EBADF in ruby/test_io.rb on ruby_1_9_3
04/08/2012
-
10:34 PM Bug #6271 (Open): textmode File#read on CRLF
- I think that is not fixed yet.
io_unread() doesn't work properly in that case.
An idea is not using `read into buff... -
08:59 PM Bug #6271 (Closed): textmode File#read on CRLF
- Seems fixed already in the repository.
-
06:54 PM Bug #6271 (Closed): textmode File#read on CRLF
- I'm not sure this is bug,
when "File#read(X)" for textmode finishes inside of CRLF, stream keeps CR unread against m... -
10:27 PM Bug #6272 (Closed): Rinda sticks on some tests
- Rindaが例えば以下のようにすると刺さります。
while [ yes ];do;make test-all TESTS='-v -n test_ruby_talk_264062 rinda/test_rinda.rb' RU... -
06:46 PM Bug #6269: Process.spawn does not work with Tempfile
- I find it a bit inconsistent that a Tempfile object is not supported,
as, for example, this code works without a pro... -
04:34 AM Bug #6269: Process.spawn does not work with Tempfile
- ssuda (Sambasiva Suda) wrote:
> :in, :out and :err expects path or fd. Please try Process.spawn("date", :out => tmp.... -
04:18 AM Bug #6269: Process.spawn does not work with Tempfile
- :in, :out and :err expects path. Please try Process.spawn("date", :out => tmp.path)
-
03:11 AM Bug #6269 (Closed): Process.spawn does not work with Tempfile
- The following code fails with an exception:
require 'tempfile'
tmp = Tempfile.new(File.basename($0))
... -
06:45 PM Feature #6270: add "??a" support for "not defined?(a) or a.nil?"
- So `??foo' is basically a macro for `not defined?(foo) or foo.nil?'.
-
12:49 PM Feature #6270 (Rejected): add "??a" support for "not defined?(a) or a.nil?"
- It would work like this:
??foo #=> nil
foo = nil
??foo #=> nil
foo = 3
??foo #=> t... -
06:32 PM Feature #6183: Enumerator::Lazy performance issue
- (Yusuke Endoh) wrote:
> (1..10).lazy.select {|x| false }.map {|x| p x }.to_a
> should print nothing, but it a... -
12:54 PM Feature #6225: Hash#+
- Would it be better to use `Hash#<<` instead of `Hash#+`?
-
12:50 PM Bug #4378 (Closed): 1.9.2でClassオブジェクトのcloneの特異メソッドが消える
- r33292 から発生しなくなっているようですので閉じさせて頂きます。
-
07:02 AM Bug #6230: [WEBrick] WEBrick::HTTPResponse#body の IO オブジェクトの読み込みに read メソッドを使っているため必要以上にブロックされる
- r35253 でマージしました、ありがとうございました。
znz (Kazuhiro NISHIYAMA) wrote:
> nobuoka (yu nobuoka) wrote:
> > (現在の実装では大丈夫そうですが、... -
06:50 AM Bug #6230 (Closed): [WEBrick] WEBrick::HTTPResponse#body の IO オブジェクトの読み込みに read メソッドを使っているため必要以上にブロックされる
- This issue was solved with changeset r35253.
yu, thank you for reporting this issue.
Your contribution to Ruby is gre... -
01:52 AM Bug #6246: 1.9.3-p125 intermittent segfault
- I have a similar problem when creating a new rails (3.2.3) app. It segfaults on the bundle install step. I think this...
04/07/2012
-
11:23 PM Bug #6131: Ctrl-C handler do not work from exec process (Windows)
- Hi Luis,
> Hiroshi: will be good do this in two commits:
>
> - First commit that reverts the usage of CREAT... -
11:10 PM Bug #6131 (Closed): Ctrl-C handler do not work from exec process (Windows)
- This issue was solved with changeset r35249.
Luis, thank you for reporting this issue.
Your contribution to Ruby is g... -
10:37 PM Bug #6230: [WEBrick] WEBrick::HTTPResponse#body の IO オブジェクトの読み込みに read メソッドを使っているため必要以上にブロックされる
- nobuoka (yu nobuoka) wrote:
> (現在の実装では大丈夫そうですが、仕様に明記されていないことに期待していいのかどうか。。)
そういう場合はその期待が変わったときに気づいて対処出来るように、
期待し... -
09:45 PM Bug #6230: [WEBrick] WEBrick::HTTPResponse#body の IO オブジェクトの読み込みに read メソッドを使っているため必要以上にブロックされる
- 指摘ありがとうございます。 readpartial は長さ 1 以上の String オブジェクトを返す、という仕様になっているということを確認したので、空文字列かどうかで分岐する部分は削除しました。 また、毎回 buf を生成するの...
-
11:14 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- Yusuke, am I supposed to understand what you meant with the code in your last comment? If so, I didn't get it...
N... -
05:29 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- On Fri, Apr 6, 2012 at 16:52, marcandre (Marc-Andre Lafortune)
<[email protected]> wrote:
>> > What is th... -
01:47 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- I don't think the current code in mkmf.rb is good.
I just meant that the syntax is actually used and thus we cannot ... -
12:03 AM Feature #6265: Remove 'useless' 'concatenation' syntax
- > I found an actual example in lib/mkmf.rb:
>
> hdr = ['#include "ruby.h"' "\n"]
Wouldn't this read better th... -
12:00 AM Feature #6265 (Assigned): Remove 'useless' 'concatenation' syntax
- msg = 'put "\n" here -> ' "\n"
I found an actual example in lib/mkmf.rb:
hdr = ['#include "ruby.h"' "\n"]
... -
11:01 AM Feature #6256: Slightly improve ruby_qsort performance
- Updated patch - I forgot that chklim may be set to 0,
so I separated chklim and cutoff. -
10:35 AM Feature #6256: Slightly improve ruby_qsort performance
- I could improve the Insertion Sort a bit by using memcpy/memmove.
It runs a bit faster even with the "worst case de... -
07:36 AM Feature #6256: Slightly improve ruby_qsort performance
- I added a patch, together with benchmarks.
Here's the results on my machine without the optimization:
$ ruby d... -
10:29 AM Bug #6266: encoding related exception with recent integrated psych
- On Sat, Apr 07, 2012 at 06:31:25AM +0900, jonforums (Jon Forums) wrote:
>
> Issue #6266 has been updated by jonfo... -
06:31 AM Bug #6266: encoding related exception with recent integrated psych
- On Arch (3.2.14-1-ARCH) the sample also exceptions when I change my locale to en_US.iso88591 from en_US.utf8.
But ... -
01:10 AM Bug #6266 (Closed): encoding related exception with recent integrated psych
- Newer versions of Psych integrated into both ruby_1_9_3 and trunk create exceptions if the yaml file isn't perceived ...
-
08:15 AM Bug #6267 (Closed): Segmentation fault when exponentiating complex number
- A segfault is raised when running the following script, with any exponent greater or equal to 5:
require "mathn/co... -
06:42 AM Feature #6216: SystemStackError backtraces should not be reduced to one line
- If it wasn't clear from the above example, Ruby 1.9.3 returns a backtrace pointing to a line of code in dm-core which...
-
02:18 AM Bug #6264: Struct.members rdoc
- @duerst Apparently, a lot more changes were included in your commit. Is it intended?