From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: poffice@blade.nagaokaut.ac.jp Delivered-To: poffice@blade.nagaokaut.ac.jp Received: from kankan.nagaokaut.ac.jp (kankan.nagaokaut.ac.jp [133.44.2.24]) by blade.nagaokaut.ac.jp (Postfix) with ESMTP id 855B117C1A7F for ; Wed, 18 Nov 2015 10:36:42 +0900 (JST) Received: from voscc.nagaokaut.ac.jp (voscc.nagaokaut.ac.jp [133.44.1.100]) by kankan.nagaokaut.ac.jp (Postfix) with ESMTP id D6557B5D8C2 for ; Wed, 18 Nov 2015 11:07:17 +0900 (JST) Received: from neon.ruby-lang.org (neon.ruby-lang.org [221.186.184.75]) by voscc.nagaokaut.ac.jp (Postfix) with ESMTP id 0AFD118CC7B2 for ; Wed, 18 Nov 2015 11:07:17 +0900 (JST) Received: from [221.186.184.76] (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id 8D06B120489; Wed, 18 Nov 2015 11:07:16 +0900 (JST) X-Original-To: ruby-core@ruby-lang.org Delivered-To: ruby-core@ruby-lang.org Received: from dcvr.yhbt.net (dcvr.yhbt.net [64.71.152.64]) by neon.ruby-lang.org (Postfix) with ESMTP id C6BF3120457 for ; Wed, 18 Nov 2015 11:07:12 +0900 (JST) Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 365A4203F5; Wed, 18 Nov 2015 02:07:12 +0000 (UTC) Date: Wed, 18 Nov 2015 02:07:12 +0000 From: Eric Wong To: Ruby developers Message-ID: <20151118020712.GD8179@dcvr.yhbt.net> References: <20151112020330.GA18224@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151112020330.GA18224@dcvr.yhbt.net> X-ML-Name: ruby-core X-Mail-Count: 71539 Subject: [ruby-core:71539] Re: [Ruby trunk - Feature #11339] [PATCH] io.c: avoid kwarg parsing in C API X-BeenThere: ruby-core@ruby-lang.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Ruby developers List-Id: Ruby developers List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: ruby-core-bounces@ruby-lang.org Sender: "ruby-core" Eric Wong wrote: > Will followup with other IO/Socket/SSL methods Done for normal socket, asked about SSL in [ruby-core:71538] I might ignore optimizing ARGF.read_nonblock(... exception: false) for now since it (AFAIK) is not used frequently and the extra methods+parsing time isn't worth it. 2.3 will be the first version to support "exception: false" on ARGF, even...