mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/resolv.rb: Hide private method and state-tracking constants from
RDoc. Patch by Mark Turner. [Ruby 1.9 - Feature #4691] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31549 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
58355ea52a
commit
cc48da67d8
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat May 14 02:51:42 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* lib/resolv.rb: Hide private method and state-tracking constants from
|
||||
RDoc. Patch by Mark Turner. [Ruby 1.9 - Feature #4691]
|
||||
|
||||
Fri May 13 19:23:21 2011 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||
|
||||
* numeric.c (flo_coerce): Add #flo_coerce documentation.
|
||||
|
|
|
@ -394,7 +394,7 @@ class Resolv
|
|||
end
|
||||
end
|
||||
|
||||
def use_ipv6?
|
||||
def use_ipv6? # :nodoc:
|
||||
begin
|
||||
list = Socket.ip_address_list
|
||||
rescue NotImplementedError
|
||||
|
@ -599,8 +599,8 @@ class Resolv
|
|||
base + random(len)
|
||||
end
|
||||
|
||||
RequestID = {}
|
||||
RequestIDMutex = Mutex.new
|
||||
RequestID = {} # :nodoc:
|
||||
RequestIDMutex = Mutex.new # :nodoc:
|
||||
|
||||
def self.allocate_request_id(host, port) # :nodoc:
|
||||
id = nil
|
||||
|
|
Loading…
Reference in a new issue