Activity
From 04/04/2011 to 04/10/2011
04/10/2011
- 10:24 PM Revision 2934feb9 (git): * 2011-04-11
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:24 PM Revision 091ea0ed (git): * ext/openssl/ossl.c: Fix typo, document version constants.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31257 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:23 PM Feature #4539: Array#zip_with
- =begin
On Sat, Apr 9, 2011 at 2:13 PM, Yukihiro Matsumoto <matz@ruby-lang.org> wrote:
>
> I am not sure whether adding new zip_with or adding zip with symbol at
> last would be better. Any opinion?
>
> ... -
12:29 PM Feature #4539: Array#zip_with
- =begin
Hi,
2011/4/9 Yukihiro Matsumoto <matz@ruby-lang.org>:
> I am not sure whether adding new zip_with or adding zip with symbol at
> last would be better. Â Any opinion?
I'm neutral for adding zip with symbol at last, but I
... -
12:23 PM Feature #4539: Array#zip_with
- =begin
HI,
On Sat, Apr 9, 2011 at 10:13 PM, Yukihiro Matsumoto <matz@ruby-lang.org> wrote:
> I am not sure whether adding new zip_with or adding zip with symbol at
> last would be better. Â Any opinion?
I vote to adding zip with... -
12:23 AM Feature #4539: Array#zip_with
- =begin
Hello,
On 9 April 2011 15:13, Yukihiro Matsumoto <matz@ruby-lang.org> wrote:
| Hi,
|
| I am not sure whether adding new zip_with or adding zip with symbol at
| last would be better. Â Any opinion?
|
| Â Â Â Â Â Â Â ... -
04:23 PM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
Tomoyuki Chikanaga <redmine@ruby-lang.org> wrote:
> These patches seem good and after applying them, make test-all passes
> all tests except a test for parallel_test in my environment. thanks!
Thanks for reporting and he... -
01:41 PM Bug #4566 (Third Party's Issue): followup of [ruby-core:32747]
- =begin
[ruby-core:32747]
Index: vm_exec.c
===================================================================
--- vm_exec.c (revision 31234)
+++ vm_exec.c (working copy)
@@ -11,7 +11,7 @@
#include <math.h>
-#if... -
01:24 PM Revision 4db93c3f (git): * include/ruby/ruby.h: parenthesize macro arguments.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:29 AM Bug #4565 (Closed): incompatible change at rev.31169 about autoload
- =begin
After rev.31169, const_defined? about a pre-autoloading constant on a included module returns true.
# Ruby/Tk cannot work on rev.31169 or later.
On ruby1.8 and before rev.31169, returns false.
For example, the following ... -
03:32 AM Bug #4564 (Closed): mingw-w64, truncate, ftruncate and ftello -- properly evalute it's existence
- =begin
Hello,
I'm using latest mingw-w64 builds that target in a experimental way GCC 4.7.0 codebase (gcc trunk)
mingw-w64 also combines improved CRT and headers support, which in this case included truncate, ftruncate and ftello ...
04/09/2011
-
11:23 PM Feature #4539: Array#zip_with
- =begin
Hi,
On 9 April 2011 10:29, Kenta Murata <muraken@gmail.com> wrote:
> Hi,
>
> I implemented the features in C, and wrote tests for them.
> Please see the following diffs:
> https://github.com/mrkn/ruby/commit/9c7ead0e3... -
10:23 PM Feature #4539: Array#zip_with
- =begin
Hi,
In message "Re: [ruby-core:35673] Re: [Ruby 1.9 - Feature #4539][Assigned] Array#zip_with"
on Sat, 9 Apr 2011 17:29:28 +0900, Kenta Murata <muraken@gmail.com> writes:
|I implemented the features in C, and wrot... -
06:23 PM Feature #4539: Array#zip_with
- =begin
Hi,
On 2011年4月5日火曜日 at 19:50, Benoit Daloze wrote:
> Here is a gist with a Ruby implementation of the modifications for
> Array#zip: https://gist.github.com/903388
> I'm wishing to do a C implementation if this feels r... -
06:14 PM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
Hi Eric,
These patches seem good and after applying them, make test-all passes all tests except a test for parallel_test in my environment. thanks!
=end
-
12:29 PM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
Eric Wong <normalperson@yhbt.net> wrote:
> Thanks for testing, think I have a better fix below (supercedes my
> original fix)
>
> Also pushed to the "io-close-fixes" branch of git://bogomips.org/ruby.git
Oops, I br... -
12:23 PM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
KOSAKI Motohiro <kosaki.motohiro@gmail.com> wrote:
> After while thinking, I conclude I was wrong. If rb_io_fptr_cleanup()
> raise a exception, We don't have to kill other threads. So, now I'm
> incline to revert r31230. Hm... -
12:23 PM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
Tomoyuki Chikanaga <redmine@ruby-lang.org> wrote:
> ruby -v changed from - to ruby 1.9.3dev (2011-04-05 trunk 31241) [x86_64-darwin10.6.0]
>
> Hi,
>
> I applied Eric's patch, but TestSocket#test_closed_read still repo... -
09:15 AM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
Hi,
I applied Eric's patch, but TestSocket#test_closed_read still report same failure.
I can reproduce EBADF with following script.
r, w = IO.pipe
read_thread = Thread.new{ r.read(1) }
sleep(0.1) until read_thread.st... -
01:23 AM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
2011/4/8 Eric Wong <normalperson@yhbt.net>:
> KOSAKI Motohiro <kosaki.motohiro@gmail.com> wrote:
>> > ----------------------------------------
>> > Bug #4558: TestSocket#test_closed_read fails after r31230
>> > http://redmine... -
03:54 PM Bug #4289: Timeouts in threads cause SEGV
- =begin
I found a way to fix the issue without breaking user-facing code and still keep
performance :D
I just use a flag to mark a singleton class as ephemeral and have the method
cache bypass caching (and expiry) of short-lived ephe... - 03:10 PM Revision 2350bd94 (git): * 2011-04-10
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31255 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:10 PM Revision 6eb77404 (git): * ext/stringio/stringio.c (strio_each, strio_readlines):
- Use `NUM2LONG` instead of `FIX2INT`. Fixes [ruby-dev:43395].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
02:28 PM Revision 4e817b39 (git): * ext/stringio/stringio.c (strio_each):
- Fix exception message and don't raise immediately if block is not given.
Fixes [ruby-dev:43394].
* test/stringio/test_stringio.rb (test_each_line_limit_0):
Fix test for above.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31253... -
01:01 PM Revision 0a69f2e3 (git): * ext/stringio/stringio.c (strio_each, strio_readlines):
- limit must not be zero. Fixes [ruby-dev:43392].
* test/stringio/test_stringio.rb: Add tests for above.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - 09:02 AM Revision 699c3de1 (git): * 2011-04-09
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:02 AM Revision eb7d6881 (git): * include/ruby/util.h: parenthesize macro arguments.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
04/08/2011
-
02:25 PM Bug #4549: Can't start class names with non us-ascii chars
- =begin
Use decomposed string. In this case,
class A\u030Aa\u0308o\u0308
end
Ruby considers it is begin with ASCII uppercased character: constant.
=end
-
02:07 PM Feature #3375: --disable-libedit to disable libedit
- =begin
Bug #1823 と #3827 もよろしう
=end
-
02:02 PM Feature #3375: --disable-libedit to disable libedit
- =begin
=end
-
10:30 AM Feature #3375: --disable-libedit to disable libedit
- =begin
Shyouhei Urabe wrote:
> ext/readlineのメンテナの高尾さん:
> ...
すみません、確認できておりませんでした。
今日中に動作確認して問題がないようであればコミットします。
=end
-
01:29 AM Feature #3375: --disable-libedit to disable libedit
- =begin
ext/readlineのメンテナの高尾さん:
本件の進捗状況についてうかがいたいです。
=end
-
09:38 AM Bug #4455 (Closed): rubygem's test fails when source directory and build directory differ
- =begin
r31147 and r31151.
=end
-
09:31 AM Bug #4555 (Assigned): [PATCH] ext/socket/init.c: rsock_connect retries on interrupt
- =begin
=end
-
09:29 AM Bug #4562: [pull requested] ./config no-ssl2で作ったopensslとext/opensslが混ざらない
- =begin
Iwamatsu さんに ext/openssl のメンテナになってもらって、
なひさんや Martin さんと合議してもらえばいいんじゃないかと思い始めていたりはします。
=end
-
08:52 AM Bug #4562: [pull requested] ./config no-ssl2で作ったopensslとext/opensslが混ざらない
- =begin
こんにちは。
同じ問題を issues/4556 でレポートしています。
=end
-
01:25 AM Bug #4562 (Closed): [pull requested] ./config no-ssl2で作ったopensslとext/opensslが混ざらない
- =begin
ext/opensslにpull requestがきているので誰か判断してほしいんですが、誰に振るべきですかね。
https://github.com/ruby/ruby/pull/12
なおパッチを(私が)見た感じによると(私には)問題ない気がしてはいます。
=end
-
08:51 AM Feature #4556: Please add option which enable SSLv2 support
- =begin
Other patches exist.
https://github.com/spk/ruby/commit/dbe76bb2c83ed393c2aee09d6419b3d3062bbda3
=end
- 07:50 AM Revision 8999a9d4 (git): * 2011-04-08
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
07:50 AM Revision 653b4248 (git): * ext/stringio/stringio.c (strio_getline): check whether str is
- a string when str and lim are given.
https://twitter.com/watson1978/status/56225052152168449
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
04:23 AM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
KOSAKI Motohiro <kosaki.motohiro@gmail.com> wrote:
> > ----------------------------------------
> > Bug #4558: TestSocket#test_closed_read fails after r31230
> > http://redmine.ruby-lang.org/issues/4558
>
> I think cur... -
03:40 AM Feature #4553: Add Set#pick and Set#pop
- =begin
Hi.
There is no difference between your `Set#pick` and the existing `Set#first`. As such, there is no need for `pick`.
One can get the effect of `Set#pop` by calling the existing `Set#delete` with the result of `Set#first` (... -
03:01 AM Feature #4541: Inconsistent Array.slice()
- Hi,
On Tue, Apr 5, 2011 at 3:04 AM, Yui NARUSE <redmine@ruby-lang.org> wrote:
>
> ...
With all due respect, I am strongly opposed to that change. There is no way that the following results should change:
```ruby
array[0...3] # =... -
01:09 AM Bug #4561: 1.9.2 requires parentheses around argument of method call in an array, where 1.8.7 did not
- =begin
That has bitten me a few times too, but I accepted it as it is probably clearer in a long expression.
I'm curious to see why this changed.
=end
04/07/2011
-
10:23 PM Bug #4558: TestSocket#test_closed_read fails after r31230
- =begin
> ----------------------------------------
> Bug #4558: TestSocket#test_closed_read fails after r31230
> http://redmine.ruby-lang.org/issues/4558
I think current rb_io_close() is broken. We have to call rb_thread_fd_clos... -
12:53 AM Bug #4558 (Closed): TestSocket#test_closed_read fails after r31230
- =begin
After r31230, make test-all reports a failure in test_socket.rb @Mac OS X 10.6.6
% make test-all TESTS=../ruby/test/socket/test_socket.rb
./miniruby -I../ruby/lib -I. -I.ext/common ../ruby/tool/runruby.rb --extout=.ext --... -
03:27 PM Bug #4561 (Assigned): 1.9.2 requires parentheses around argument of method call in an array, where 1.8.7 did not
- =begin
=end
-
01:47 PM Bug #4561: 1.9.2 requires parentheses around argument of method call in an array, where 1.8.7 did not
- =begin
Same thing with pre formatting:
[dave hladik:~] cat method_call_without_parens_in_array.rb
def method_name(arg)
end
[ method_name 'value' ]
[dave hladik:~] rvm system
[dave hladik:~] ruby -v
ruby 1.8.7 (2011-02-18 patc... -
01:41 PM Bug #4561 (Closed): 1.9.2 requires parentheses around argument of method call in an array, where 1.8.7 did not
- [dave hladik:~] cat method_call_without_parens_in_array.rb
def method_name(arg)
end
[ method_name 'value' ]
[dave hladik:~] ruby -v
ruby 1.8.7 (2011-02-18 patchlevel 334) [i686-darwin10]
[dave hladik:~] ruby method_call_without_... -
11:48 AM Feature #4560 (Closed): [PATCH] lib/net/protocol.rb: avoid exceptions in rbuf_fill
- Blindly hitting IO#read_nonblock() and raising is expensive due
to two factors:
1) method cache being scanned/cleared when the IO::WaitReadable
extended class is GC-ed
2) backtrace generation
This reduces the likelyhood of an IO... -
11:44 AM Bug #4289: Timeouts in threads cause SEGV
- =begin
0002-error.c-rb_mod_sys_fail-use-subclass-and-cache.patch breaks
existing test cases that use assert_raise/assert_raises. This
may be a dealbreaker for the patch, unfortunately...
Actual code that uses "rescue Errno::EAGAIN"... -
10:55 AM Bug #4289: Timeouts in threads cause SEGV
- =begin
I noticed 0002-error.c-rb_mod_sys_fail-use-subclass-and-cache.patch breaks on latest trunk, actually.
=end
-
08:45 AM Bug #4289: Timeouts in threads cause SEGV
- =begin
Attached are patches to revert r29673 and instate the rb_mod_sys_fail class cache I proposed in [ruby-core:32508]
=end
- 11:04 AM Revision 4ca9e7d0 (git): * 2011-04-07
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
11:04 AM Revision e6ef26ae (git): * include/ruby/io.h: parenthesize macro arguments.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31246 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:07 AM Bug #4559 (Closed): Proc#== does not match the documented behaviour
- =begin
To see a paste concisely showing the problem, see https://gist.github.com/899026/ba84d66b02727675320dc4f031637d753a41c209
Code is shown below for 1.9.2p180.
The documented behaviour (and my own expectation for (({#==}))) is...
04/06/2011
-
09:07 PM Bug #4473: Calling return within begin still executes else
- =begin
I can see the same issue happening on Windows also.
=end
-
07:56 PM Bug #4549: Can't start class names with non us-ascii chars
- =begin
I beg the differ! ÅÄÖ are all uppercase letters, as oppose to åäö, in the Swedish alphabet.
The problem this is occurring for us is that we can't the name the objects in your domain model correctly. We don't wan't to translate i... -
04:48 PM Bug #4549 (Rejected): Can't start class names with non us-ascii chars
- =begin
It is because Å is not a uppercase letter.
=end
-
02:21 PM Feature #4551: uri.set_scheme should downcase schemes
- =begin
Your point is reasonable, but it breaks some cases like
s = 'HTTP://example.com/'
URI(s).to_s == s
=end
-
01:12 PM Feature #4556: Please add option which enable SSLv2 support
- =begin
Sorry, The first patch is broken.
I attched new patch.
=end
-
12:58 PM Feature #4556 (Closed): Please add option which enable SSLv2 support
- =begin
SSLv2 becomes disabled in much environment, because this has several vulnerabilities.
This patch disable SSLv2 in Ruby.
If user want to use SSLv2 in ruby, you need config with --enable-opensslv2.
The SSLv2 support is disable b... -
01:03 PM Bug #4550 (Closed): Loading an RSA public key during an HTTPS connection corrupts the connection
- =begin
This issue was solved with changeset r31242.
Eric, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
=end
-
12:08 PM Revision d55cf835 (git): * include/ruby/intern.h: parenthesize macro arguments.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31245 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
09:23 AM Bug #4289: Timeouts in threads cause SEGV
- =begin
Motohiro KOSAKI wrote:
> Running deadlock_test.rb in [Bug#4266] on trunk makes segfault. git bisect indicate
> first bad commit is below.
>
> --------------------------------------------------------------------------... -
09:18 AM Bug #4289: Timeouts in threads cause SEGV
- =begin
also see
((<[ruby-core:35622]|URL:http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/35622>))
(redmine doesn't seem to handle mail replies correctly)
=end
-
07:36 AM Bug #4289: Timeouts in threads cause SEGV
- =begin
Hiding, but not fixing the issue is the attached patch:
[PATCH] timeout.rb: avoid introducing new class for every timeout
This is expensive because of clearing the method cache upon GC.
As a side effect, it also seems to ... -
08:13 AM Bug #4555 (Closed): [PATCH] ext/socket/init.c: rsock_connect retries on interrupt
- =begin
Otherwise I get the following error in test/openssl/test_ssl.rb:
test_verify_result(OpenSSL::TestSSL):
Errno::EINTR: Interrupted system call - connect(2)
/tmp/ruby/test/openssl/test_ssl.rb:338:in `initialize'
... -
07:42 AM Bug #4266: Timeouts in threads cause "ThreadError: deadlock; recursive locking"
- =begin
I have a short-term fix for the related issue in Bug #4289
http://redmine.ruby-lang.org/attachments/1572/0001-timeout.rb-avoid-introducing-new-class-for-every-tim.patch
It works both with and without the mutex-synchronize-use-... -
06:14 AM Revision d5b1fde5 (git): * ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize):
- pop pushed error after each try of reading. fixes #4550
* ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto.
* ext/openssl/ossl_pkey_ec.c (ossl_ec_initialize): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31244 b2dd... - 02:44 AM Revision 6fc7c377 (git): * 2011-04-06
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:44 AM Revision e61d269f (git): * ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize):
- pop pushed error after each try of reading. fixes #4550
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31242 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
04/05/2011
-
08:23 PM Feature #4539: Array#zip_with
- > http://redmine.ruby-lang.org/issues/4539
> ...
Hello,
I'm answering here since redmine won't answer to my requests (even got a 500).
I think this new method would be redundant with `Array#zip`.
But I agree doing `c.zip(d).map {... -
03:55 PM Feature #4539 (Assigned): Array#zip_with
-
04:04 PM Feature #4541 (Assigned): Inconsistent Array.slice()
- The fix may be following but it can be a spec...
```diff
diff --git a/array.c b/array.c
index bdeb768..4721387 100644
--- a/array.c
+++ b/array.c
@@ -948,7 +948,7 @@ rb_ary_subseq(VALUE ary, long beg, long len)
{
VALUE kl... -
03:56 PM Bug #4530 (Rejected): trunk "make check" gives "cannot load such file -- zlib" and "cannot load such file -- openssl"
- =begin
You seem don't install zlib-dev/readline-dev or something.
=end
-
02:33 PM Bug #4554 (Closed): test_set_errors in test_x509store.rb fails on CentOS 5.5
- =begin
On CentOS 5.5, test_set_errors in test_x509store.rb fails as follows:
1.9.2 p180
1) Failure:
test_set_errors(OpenSSL::TestX509Store) [/var/home/yhara/ruby-1.9.2-p180/test/openssl/test_x509store.rb:212]:
OpenSSL::X509... -
11:34 AM Revision a63105a4 (git): * include/ruby/encoding.h: parenthesize macro arguments.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:10 AM Feature #4553 (Rejected): Add Set#pick and Set#pop
- =begin
A very common operation on sets is to take an arbitrary element from them at O(1) cost. I know typically
it's suggested that library additions go out as a gem to see community review. However, to me it seems
to be a glaring omi... -
05:07 AM Bug #4501: 1.9.2-p180 fails to compile on OSX 10.7
- =begin
First, make sure you’ve installed XCode 4.1 DP 2 (you can download it through Apple if you are enrolled in their developer program)
Next, add the following to your ~/.bash_profile with your favorite editor
export CC=/Develope... -
04:23 AM Bug #4527: [PATCH] IO#close releases GVL if possible
- Motohiro KOSAKI <kosaki.motohiro@gmail.com> wrote:
> Eric, I commited slightly modified version because your patch couldn't
> ...
Thanks, looks like you missed the following hunk in rb_io_reopen():
~~~diff
diff --git a/io.c b/i... - 04:05 AM Revision 42caa6dd (git): * 2011-04-05
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:05 AM Revision 257f7859 (git): fix a typo
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:23 AM Feature #4538: [PATCH (cleanup)] avoid unnecessary select() calls before doing I/O
- =begin
Charles Oliver Nutter <headius@headius.com> wrote:
> On Fri, Apr 1, 2011 at 4:57 PM, Eric Wong <normalperson@yhbt.net> wrote:
> > Charles Nutter <headius@headius.com> wrote:
> >> I wonder, though, if depending on this behav...
04/04/2011
-
10:58 PM Bug #4509: Net::IMAP::ResponseParseError: unexpected token CRLF (expected NUMBER)
- =begin
=== Better steps to repro
I created a free account on yahoo to reproduce this error. Now, you can repro with these steps:
require 'net/imap'
conn = Net::IMAP.new('imap.mail.yahoo.com', 143, false)
conn.instance_eval { se... -
10:40 PM Bug #4509: Net::IMAP::ResponseParseError: unexpected token CRLF (expected NUMBER)
- =begin
(({def a # test - why "Error: file empty." in bug report}))
=end
-
10:34 PM Bug #4509: Net::IMAP::ResponseParseError: unexpected token CRLF (expected NUMBER)
- =begin
=== Better steps to repro
I created a free account on yahoo to reproduce this error. Now, you can repro with these steps:
(({require 'net/imap'
conn = Net::IMAP.new('imap.mail.yahoo.com', 143, false)
conn.instance_... -
07:12 PM Feature #4532 (Assigned): [PATCH] add IO#pread and IO#pwrite methods
- Hi
I personally still dislike pread/pwrite method name, but I give up to argue it because I'm worry about making endless discussion. Let's assign this ticket to matz and hear his opinions. :)
-
07:07 PM Bug #4500 (Closed): warning: implicit declaration of function 'fdatasync' for OS X
- =begin
=end
-
01:11 PM Revision 78ea7afe (git): * ext/io/nonblock/nonblock.c (io_nonblock_set): Avoid F_SETFL if
- we're not changing the O_NONBLOCK bit. F_SETFL is an expensive
operation since it needs to affect all processes with the same
file object.
The patch is written by Eric Wong. [ruby-core:35556]
git-svn-id: svn+ssh://ci.ruby-lang.o... -
12:43 PM Revision 3ba502d5 (git): * io.c (rb_io_syswrite): While local FS writes are usually
- buffered, the buffers can be full or the file opened with
O_SYNC. IO#syswrite can also be used on blocking IOs
(pipe/socket) just like IO#write.
The patch is written by Eric Wong. [ruby-core:35554]
git-svn-id: svn+ssh://ci.ruby-... -
07:35 AM Feature #4551 (Closed): uri.set_scheme should downcase schemes
- =begin
From RFC 2396 section 3.1:
"For resiliency, programs interpreting URI should treat upper case letters as equivalent to lower case in scheme names (e.g., allow 'HTTP' as well as 'http')."
Currently programs using URI for HTT... -
05:20 AM Bug #4550 (Closed): Loading an RSA public key during an HTTPS connection corrupts the connection
- =begin
The attached file creates an HTTPS connection to gmail.com then loads an RSA public key.
If a private key is loaded the error does not reproduce.
Loading of the public key corrupts the HTTPS connection resulting in the follo... - 02:51 AM Revision b36f8e6e (git): * 2011-04-04
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 02:51 AM Revision 8eb92a67 (git): * test/test_tempfile.rb: simply ignore platform depedent testcases
- instead of skipping.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e