mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/pathname/lib/pathname.rb, ext/tk/lib/multi-tk.rb,
ext/tk/sample/demos-en/widget, lib/benchmark.rb, lib/irb/cmd/fork.rb, lib/mkmf.rb, lib/net/ftp.rb, lib/net/smtp.rb, lib/open3.rb, lib/pstore.rb, lib/rexml/element.rb, lib/rexml/light/node.rb, lib/rinda/tuplespace.rb, lib/rss/maker/base.rb, lib/rss/maker/entry.rb, lib/scanf.rb, lib/set.rb, lib/shell.rb, lib/shell/command-processor.rb, lib/shell/process-controller.rb, lib/shell/system-command.rb, lib/uri/common.rb: remove unused block arguments to avoid creating Proc objects. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0e68c46e2d
commit
c3749b6a6d
23 changed files with 48 additions and 36 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
Sat Nov 5 16:27:52 2011 Kazuki Tsujimoto <kazuki@callcc.net>
|
||||
|
||||
* ext/pathname/lib/pathname.rb, ext/tk/lib/multi-tk.rb,
|
||||
ext/tk/sample/demos-en/widget, lib/benchmark.rb, lib/irb/cmd/fork.rb,
|
||||
lib/mkmf.rb, lib/net/ftp.rb, lib/net/smtp.rb, lib/open3.rb,
|
||||
lib/pstore.rb, lib/rexml/element.rb, lib/rexml/light/node.rb,
|
||||
lib/rinda/tuplespace.rb, lib/rss/maker/base.rb,
|
||||
lib/rss/maker/entry.rb, lib/scanf.rb, lib/set.rb, lib/shell.rb,
|
||||
lib/shell/command-processor.rb, lib/shell/process-controller.rb,
|
||||
lib/shell/system-command.rb, lib/uri/common.rb: remove unused block
|
||||
arguments to avoid creating Proc objects.
|
||||
|
||||
Sat Nov 5 15:45:04 2011 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/socket/init.c (rsock_socket0): extract single socket() call with
|
||||
|
|
|
@ -495,7 +495,7 @@ class Pathname # * Find *
|
|||
# If +self+ is <tt>.</tt>, yielded pathnames begin with a filename in the
|
||||
# current directory, not <tt>./</tt>.
|
||||
#
|
||||
def find(&block) # :yield: pathname
|
||||
def find # :yield: pathname
|
||||
require 'find'
|
||||
if @path == '.'
|
||||
Find.find(@path) {|f| yield self.class.new(f.sub(%r{\A\./}, '')) }
|
||||
|
|
|
@ -2103,7 +2103,7 @@ end
|
|||
# evaluate a procedure on the proper interpreter
|
||||
class MultiTkIp
|
||||
# instance & class method
|
||||
def _proc_on_safelevel(cmd=nil, &blk) # require a block for eval
|
||||
def _proc_on_safelevel(cmd=nil) # require a block for eval
|
||||
if cmd
|
||||
if cmd.kind_of?(Method)
|
||||
_proc_on_safelevel{|*args| cmd.call(*args)}
|
||||
|
|
|
@ -627,7 +627,7 @@ class Object
|
|||
end
|
||||
|
||||
class Proc
|
||||
def initialize(*args, &b)
|
||||
def initialize(*args)
|
||||
super
|
||||
@__pseudo_toplevel__ = Thread.current[:TOPLEVEL]
|
||||
end
|
||||
|
|
|
@ -243,7 +243,7 @@ module Benchmark
|
|||
# #bmbm yields a Benchmark::Job object and returns an array of
|
||||
# Benchmark::Tms objects.
|
||||
#
|
||||
def bmbm(width = 0, &blk) # :yield: job
|
||||
def bmbm(width = 0) # :yield: job
|
||||
job = Job.new(width)
|
||||
yield(job)
|
||||
width = job.width + 1
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
module IRB
|
||||
module ExtendCommand
|
||||
class Fork<Nop
|
||||
def execute(&block)
|
||||
def execute
|
||||
pid = send ExtendCommand.irb_original_method_name("fork")
|
||||
unless pid
|
||||
class << self
|
||||
|
|
|
@ -1125,7 +1125,7 @@ def typedef_expr(type, headers)
|
|||
return "rbcv_typedef_", member, prelude
|
||||
end
|
||||
|
||||
def try_signedness(type, member, headers = nil, opts = nil, &b)
|
||||
def try_signedness(type, member, headers = nil, opts = nil)
|
||||
raise ArgumentError, "don't know how to tell signedness of members" if member
|
||||
if try_static_assert("(#{type})-1 < 0", headers, opts)
|
||||
return -1
|
||||
|
|
|
@ -493,7 +493,7 @@ module Net
|
|||
# +file+ to the server. If the optional block is given, it also passes it
|
||||
# the data, in chunks of +blocksize+ characters.
|
||||
#
|
||||
def storbinary(cmd, file, blocksize, rest_offset = nil, &block) # :yield: data
|
||||
def storbinary(cmd, file, blocksize, rest_offset = nil) # :yield: data
|
||||
if rest_offset
|
||||
file.seek(rest_offset, IO::SEEK_SET)
|
||||
end
|
||||
|
@ -504,7 +504,7 @@ module Net
|
|||
buf = file.read(blocksize)
|
||||
break if buf == nil
|
||||
conn.write(buf)
|
||||
yield(buf) if block
|
||||
yield(buf) if block_given?
|
||||
end
|
||||
conn.close
|
||||
voidresp
|
||||
|
@ -525,7 +525,7 @@ module Net
|
|||
# named +file+ to the server, one line at a time. If the optional block is
|
||||
# given, it also passes it the lines.
|
||||
#
|
||||
def storlines(cmd, file, &block) # :yield: line
|
||||
def storlines(cmd, file) # :yield: line
|
||||
synchronize do
|
||||
with_binary(false) do
|
||||
conn = transfercmd(cmd)
|
||||
|
@ -536,7 +536,7 @@ module Net
|
|||
buf = buf.chomp + CRLF
|
||||
end
|
||||
conn.write(buf)
|
||||
yield(buf) if block
|
||||
yield(buf) if block_given?
|
||||
end
|
||||
conn.close
|
||||
voidresp
|
||||
|
|
|
@ -933,7 +933,7 @@ module Net
|
|||
Response.parse(buf)
|
||||
end
|
||||
|
||||
def critical(&block)
|
||||
def critical
|
||||
return '200 dummy reply code' if @error_occured
|
||||
begin
|
||||
return yield()
|
||||
|
|
|
@ -266,7 +266,7 @@ module Open3
|
|||
# STDOUT.binmode; print thumnail
|
||||
# end
|
||||
#
|
||||
def capture3(*cmd, &block)
|
||||
def capture3(*cmd)
|
||||
if Hash === cmd.last
|
||||
opts = cmd.pop.dup
|
||||
else
|
||||
|
@ -320,7 +320,7 @@ module Open3
|
|||
# End
|
||||
# image, s = Open3.capture2("gnuplot", :stdin_data=>gnuplot_commands, :binmode=>true)
|
||||
#
|
||||
def capture2(*cmd, &block)
|
||||
def capture2(*cmd)
|
||||
if Hash === cmd.last
|
||||
opts = cmd.pop.dup
|
||||
else
|
||||
|
@ -359,7 +359,7 @@ module Open3
|
|||
# # capture make log
|
||||
# make_log, s = Open3.capture2e("make")
|
||||
#
|
||||
def capture2e(*cmd, &block)
|
||||
def capture2e(*cmd)
|
||||
if Hash === cmd.last
|
||||
opts = cmd.pop.dup
|
||||
else
|
||||
|
@ -662,7 +662,7 @@ module Open3
|
|||
end
|
||||
module_function :pipeline
|
||||
|
||||
def pipeline_run(cmds, pipeline_opts, child_io, parent_io, &block) # :nodoc:
|
||||
def pipeline_run(cmds, pipeline_opts, child_io, parent_io) # :nodoc:
|
||||
if cmds.empty?
|
||||
raise ArgumentError, "no commands"
|
||||
end
|
||||
|
|
|
@ -310,7 +310,7 @@ class PStore
|
|||
#
|
||||
# Note that PStore does not support nested transactions.
|
||||
#
|
||||
def transaction(read_only = false, &block) # :yields: pstore
|
||||
def transaction(read_only = false) # :yields: pstore
|
||||
value = nil
|
||||
raise PStore::Error, "nested transaction" if !@thread_safe && @lock.locked?
|
||||
@lock.synchronize do
|
||||
|
|
|
@ -901,11 +901,11 @@ module REXML
|
|||
# #-> Yields <b/>, <c/>, <d/>, <b/>, <c/>, <d/>
|
||||
# XPath.each(doc.root, 'child::node()', &block)
|
||||
# #-> Yields <b/>, <c/>, <d/>, sean, <b/>, <c/>, <d/>
|
||||
def each( xpath=nil, &block)
|
||||
def each( xpath=nil )
|
||||
XPath::each( @element, xpath ) {|e| yield e if e.kind_of? Element }
|
||||
end
|
||||
|
||||
def collect( xpath=nil, &block )
|
||||
def collect( xpath=nil )
|
||||
collection = []
|
||||
XPath::each( @element, xpath ) {|e|
|
||||
collection << yield(e) if e.kind_of?(Element)
|
||||
|
@ -913,7 +913,7 @@ module REXML
|
|||
collection
|
||||
end
|
||||
|
||||
def inject( xpath=nil, initial=nil, &block )
|
||||
def inject( xpath=nil, initial=nil )
|
||||
first = true
|
||||
XPath::each( @element, xpath ) {|e|
|
||||
if (e.kind_of? Element)
|
||||
|
|
|
@ -40,7 +40,7 @@ module REXML
|
|||
end
|
||||
end
|
||||
|
||||
def each( &block )
|
||||
def each
|
||||
size.times { |x| yield( at(x+4) ) }
|
||||
end
|
||||
|
||||
|
|
|
@ -305,7 +305,7 @@ module Rinda
|
|||
@bin.delete_at(idx) if idx
|
||||
end
|
||||
|
||||
def find(&blk)
|
||||
def find
|
||||
@bin.reverse_each do |x|
|
||||
return x if yield(x)
|
||||
end
|
||||
|
|
|
@ -353,7 +353,7 @@ module RSS
|
|||
|
||||
module SetupDefaultDate
|
||||
private
|
||||
def _set_default_values(&block)
|
||||
def _set_default_values
|
||||
keep = {
|
||||
:date => date,
|
||||
:dc_dates => dc_dates.to_a.dup,
|
||||
|
@ -365,7 +365,7 @@ module RSS
|
|||
dc_dates.unshift(dc_date)
|
||||
end
|
||||
self.date ||= self.dc_date
|
||||
super(&block)
|
||||
super
|
||||
ensure
|
||||
date = keep[:date]
|
||||
dc_dates.replace(keep[:dc_dates])
|
||||
|
@ -379,7 +379,7 @@ module RSS
|
|||
|
||||
module SetupDefaultLanguage
|
||||
private
|
||||
def _set_default_values(&block)
|
||||
def _set_default_values
|
||||
keep = {
|
||||
:dc_languages => dc_languages.to_a.dup,
|
||||
}
|
||||
|
@ -390,7 +390,7 @@ module RSS
|
|||
dc_language.value = _language.dup
|
||||
dc_languages.unshift(dc_language)
|
||||
end
|
||||
super(&block)
|
||||
super
|
||||
ensure
|
||||
dc_languages.replace(keep[:dc_languages])
|
||||
end
|
||||
|
|
|
@ -99,7 +99,7 @@ module RSS
|
|||
end
|
||||
end
|
||||
|
||||
def _set_default_values(&block)
|
||||
def _set_default_values
|
||||
keep = {
|
||||
:authors => authors.to_a.dup,
|
||||
:contributors => contributors.to_a.dup,
|
||||
|
@ -126,7 +126,7 @@ module RSS
|
|||
@maker.channel.title {|t| @title = t}
|
||||
end
|
||||
self.updated ||= @maker.channel.updated
|
||||
super(&block)
|
||||
super
|
||||
ensure
|
||||
authors.replace(keep[:authors])
|
||||
contributors.replace(keep[:contributors])
|
||||
|
|
|
@ -745,7 +745,7 @@ class String
|
|||
# See Scanf for details on creating a format string.
|
||||
#
|
||||
# You will need to require 'scanf' to use String#block_scanf
|
||||
def block_scanf(fstr,&b) #:yield: current_match
|
||||
def block_scanf(fstr) #:yield: current_match
|
||||
fs = Scanf::FormatString.new(fstr)
|
||||
str = self.dup
|
||||
final = []
|
||||
|
|
|
@ -531,7 +531,7 @@ class SortedSet < Set
|
|||
require 'rbtree'
|
||||
|
||||
module_eval %{
|
||||
def initialize(*args, &block)
|
||||
def initialize(*args)
|
||||
@hash = RBTree.new
|
||||
super
|
||||
end
|
||||
|
@ -544,7 +544,7 @@ class SortedSet < Set
|
|||
}
|
||||
rescue LoadError
|
||||
module_eval %{
|
||||
def initialize(*args, &block)
|
||||
def initialize(*args)
|
||||
@keys = nil
|
||||
super
|
||||
end
|
||||
|
|
|
@ -286,7 +286,7 @@ class Shell
|
|||
end
|
||||
end
|
||||
|
||||
def self.notify(*opts, &block)
|
||||
def self.notify(*opts)
|
||||
Shell::debug_output_synchronize do
|
||||
if opts[-1].kind_of?(String)
|
||||
yorn = verbose?
|
||||
|
|
|
@ -335,7 +335,7 @@ class Shell
|
|||
end
|
||||
|
||||
# %pwd, %cwd -> @pwd
|
||||
def notify(*opts, &block)
|
||||
def notify(*opts)
|
||||
Shell.notify(*opts) {|mes|
|
||||
yield mes if iterator?
|
||||
|
||||
|
@ -407,7 +407,7 @@ class Shell
|
|||
def self.alias_map
|
||||
@alias_map
|
||||
end
|
||||
def self.alias_command(ali, command, *opts, &block)
|
||||
def self.alias_command(ali, command, *opts)
|
||||
ali = ali.id2name if ali.kind_of?(Symbol)
|
||||
command = command.id2name if command.kind_of?(Symbol)
|
||||
begin
|
||||
|
|
|
@ -234,7 +234,7 @@ class Shell
|
|||
end
|
||||
|
||||
# simple fork
|
||||
def sfork(command, &block)
|
||||
def sfork(command)
|
||||
pipe_me_in, pipe_peer_out = IO.pipe
|
||||
pipe_peer_in, pipe_me_out = IO.pipe
|
||||
|
||||
|
|
|
@ -145,7 +145,7 @@ class Shell
|
|||
# then
|
||||
# mes: "job(%id) close pipe-out."
|
||||
# yorn: Boolean(@shell.debug? or @shell.verbose?)
|
||||
def notify(*opts, &block)
|
||||
def notify(*opts)
|
||||
@shell.notify(*opts) do |mes|
|
||||
yield mes if iterator?
|
||||
|
||||
|
|
|
@ -258,7 +258,7 @@ module URI
|
|||
#
|
||||
# see also URI::Parser.make_regexp
|
||||
#
|
||||
def extract(str, schemes = nil, &block)
|
||||
def extract(str, schemes = nil)
|
||||
if block_given?
|
||||
str.scan(make_regexp(schemes)) { yield $& }
|
||||
nil
|
||||
|
|
Loading…
Reference in a new issue