Project

General

Profile

Actions

Backport #3604

closed

File.path, File.open, etc call to_str twice on the path argument

Added by tmat (Tomas Matousek) over 13 years ago. Updated almost 5 years ago.

Status:
Closed
[ruby-core:31451]

Description

=begin
class C
def respond_to?(name)
puts "C: #{name}"
return false
end
end

File.path(C.new) rescue p $!
File.open(C.new) rescue p $!
File.ctime(C.new) rescue p $!
File.dirname(C.new) rescue p $!

prints:

C: to_str
C: to_path
C: to_str
#<TypeError: can't convert C into String>
C: to_int
C: to_hash
C: to_str
C: to_path
C: to_str
#<TypeError: can't convert C into String>
C: to_io
C: to_str
C: to_path
C: to_str
#<TypeError: can't convert C into String>
C: to_str
C: to_path
C: to_str
#<TypeError: can't convert C into String>

Is there any reason why to_str is called twice on the arguments? Shouldn't to_path be called first and then to_str (i.e. the path conversion should be preferred over string conversion)?
=end


Related issues 1 (0 open1 closed)

Is duplicate of Ruby master - Bug #1760: Methods Expecting Paths Should Prefer #to_path Over #to_strClosedmatz (Yukihiro Matsumoto)07/11/2009Actions
Actions #1

Updated by nobu (Nobuyoshi Nakada) over 13 years ago

  • Category set to core

=begin

=end

Actions #2

Updated by nobu (Nobuyoshi Nakada) over 13 years ago

  • Status changed from Open to Assigned
  • Assignee set to yugui (Yuki Sonoda)

=begin

=end

Actions #3

Updated by jeremyevans0 (Jeremy Evans) almost 5 years ago

  • Description updated (diff)
  • Status changed from Assigned to Closed
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0