[#68137] improve semantics of manpages — "Anthony J. Bentley" <anthony@...>
Hi,
1 message
2015/02/17
[#68144] Re: Future of test suites for Ruby — Anthony Crumley <anthony.crumley@...>
FYI...
4 messages
2015/02/17
[#68343] [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault? — ruby@...
Issue #10916 has been reported by why do i need this acct just to create a bug report.
5 messages
2015/02/27
[#68373] Re: [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault?
— "Martin J. Dürst" <duerst@...>
2015/03/02
> * Author: why do i need this acct just to create a bug report
[#68358] [Ruby trunk - Bug #10902] require("enumerator") scans LOAD_PATH 2x on every invocation — ruby@...1.net
Issue #10902 has been updated by Aman Gupta.
3 messages
2015/02/28
[ruby-core:68036] [ruby-trunk - Bug #10518] [Rejected] String "delete" method does not remove some characters from input string
From:
usa@...
Date:
2015-02-06 02:51:40 UTC
List:
ruby-core #68036
Issue #10518 has been updated by Usaku NAKAMURA. Status changed from Closed to Rejected ---------------------------------------- Bug #10518: String "delete" method does not remove some characters from input string https://bugs.ruby-lang.org/issues/10518#change-51423 * Author: Sergio Gallelli * Status: Rejected * Priority: Normal * Assignee: * ruby -v: ruby 2.1.4p265 (2014-10-27 revision 48166) [i386-mingw32] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN ---------------------------------------- This bug affects all Ruby versions I tried, i.e. 2.0.0 and 2.1.4 on Windows and 2.1.5 on Linux In some cases the String "delete" method does not remove all the characters from the input string I ask for removal. The problem seems to depend on the string passed as argument to the delete method and on the order of its characters. Please take a look at the simple "irb" dump below: irb(main):001:0> str = 'A-B' => "A-B" irb(main):002:0> str.delete ' -#' => "A-B" irb(main):003:0> str.delete ' #-' => "AB" If I try to remove the dash from string 'A-B' passing ' -#' to the delete method, it does not work. If I change the order of the characters passed to the delete method, the result is correct. The attached Ruby program shows the above problem. ---Files-------------------------------- str_delete_bug.rb (59 Bytes) -- https://bugs.ruby-lang.org/