[#84280] [Ruby trunk Bug#14181] hangs or deadlocks from waitpid, threads, and trapping SIGCHLD — nobu@...
Issue #14181 has been updated by nobu (Nobuyoshi Nakada).
3 messages
2017/12/15
[#84398] [Ruby trunk Bug#14220] WEBrick changes - failures on MSWIN, MinGW — Greg.mpls@...
Issue #14220 has been reported by MSP-Greg (Greg L).
3 messages
2017/12/22
[#84472] Re: [ruby-dev:50394] [Ruby trunk Bug#14240] warn four special variables: $; $, $/ $\ — Eric Wong <normalperson@...>
Shouldn't English posts be on ruby-core instead of ruby-dev?
3 messages
2017/12/26
[ruby-core:84566] [Ruby trunk Bug#14259] Integer#pow returns a Invalid result with a large modulo
From:
andry.konchin@...
Date:
2017-12-30 23:03:35 UTC
List:
ruby-core #84566
Issue #14259 has been updated by andrykonchin (Andrew Konchin). Another example: ~~~ 2.pow(61, 9213693951) # => 1 ~~~ Expected following result: ~~~ (2 ** 61) % 9213693951 # => 5432161352 ~~~ ---------------------------------------- Bug #14259: Integer#pow returns a Invalid result with a large modulo https://bugs.ruby-lang.org/issues/14259#change-69105 * Author: mrkn (Kenta Murata) * Status: Closed * Priority: Normal * Assignee: mrkn (Kenta Murata) * Target version: * ruby -v: ruby 2.5.0p0 (2017-12-25 revision 61468) [x86_64-darwin16] * Backport: 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: REQUIRED ---------------------------------------- ``` irb(main):020:0> 12.pow(1, 10000000000) => 1 irb(main):021:0> 12.pow(1, 10000000001) => 1 irb(main):022:0> 12.pow(1, 10000000002) => 1 ``` These result should be `12`. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>