[#74190] [Ruby trunk Feature#12134] Comparison between `true` and `false` — duerst@...
SXNzdWUgIzEyMTM0IGhhcyBiZWVuIHVwZGF0ZWQgYnkgTWFydGluIETDvHJzdC4KCgpUc3V5b3No
3 messages
2016/03/07
[#74269] Type systems for Ruby — Rob Blanco <ml@...>
Dear ruby-core,
5 messages
2016/03/10
[#74395] [Ruby trunk Feature#12142] Hash tables with open addressing — shyouhei@...
Issue #12142 has been updated by Shyouhei Urabe.
3 messages
2016/03/17
[ruby-core:74237] [Ruby trunk Bug#12159][Assigned] Thread::Backtrace::Location#path returns absolute path for files loaded by require_relative
From:
usa@...
Date:
2016-03-09 01:40:40 UTC
List:
ruby-core #74237
Issue #12159 has been updated by Usaku NAKAMURA. Status changed from Open to Assigned Assignee set to Koichi Sasada I guess that it's intentional. `absolute_path` guarantees to contain the absolute path, but `path` does not guarantee so. It may contain the absolute path or may not. note: not only in `require_relative` but also in `require`. ---------------------------------------- Bug #12159: Thread::Backtrace::Location#path returns absolute path for files loaded by require_relative https://bugs.ruby-lang.org/issues/12159#change-57372 * Author: Satoshi TAGOMORI * Status: Assigned * Priority: Normal * Assignee: Koichi Sasada * ruby -v: ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin14] * Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN ---------------------------------------- I expected that Thread::Backtrace::Location#path always returns base filename, but returns absolute path for files loaded by require_relative. Is it intentional? or a bug? ~~~ $ ruby -v ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin14] $ cat > x.rb def a caller_locations end p a.first.path $ cat > y.rb require_relative "x" $ ruby x.rb "x.rb" $ ruby y.rb "/Users/tagomoris/x.rb" ~~~ -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:[email protected]?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>