ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:90700] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
@ 2018-12-25 10:22 ` t_leitner
  2018-12-26  0:38 ` [ruby-core:90720] " ko1
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: t_leitner @ 2018-12-25 10:22 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been reported by gettalong (Thomas Leitner).

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460

* Author: gettalong (Thomas Leitner)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:90720] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
  2018-12-25 10:22 ` [ruby-core:90700] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed t_leitner
@ 2018-12-26  0:38 ` ko1
  2018-12-26  0:48 ` [ruby-core:90721] " shyouhei
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: ko1 @ 2018-12-26  0:38 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by ko1 (Koichi Sasada).


FYI

```
7213568733f673da0d82f95e8a1bccf79ba3f0d3
Author: shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date:   Mon Nov 19 09:52:46 2018 +0000

    string.c: setbyte silently ignores upper bits
    
    The behaviour of String#setbyte has been depending on the width
    of int, which is not portable.  Must check explicitly.
    
    
    git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

:100644 100644 5a5cbb576c31350a416b2121e5efb85aaffa0676 e55c59136a49fb7d2d70805a65a4c7f56519f2e9 M    string.c
:040000 040000 2170f3be4ac9d27e26ce361c38beb7874c07436f e71fc9f00ed5602a30e9f504fc015b9bf7b4dad1 M    test
```


----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-75897

* Author: gettalong (Thomas Leitner)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:90721] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
  2018-12-25 10:22 ` [ruby-core:90700] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed t_leitner
  2018-12-26  0:38 ` [ruby-core:90720] " ko1
@ 2018-12-26  0:48 ` shyouhei
  2018-12-26  1:24 ` [ruby-core:90722] " shyouhei
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: shyouhei @ 2018-12-26  0:48 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by shyouhei (Shyouhei Urabe).


I feel sorry for the situation.  I didn't expect any actual usage of that corner case.

However the previous behaviour was strange.  It did actually raise exception when you pass a very huge number to it:

```
% ruby -v -e 'p IO.pipe[0].ungetbyte(18446744073709551616)'
ruby 1.9.3p551 (2014-11-13) [x86_64-darwin15.6.0]
-e:1:in `ungetbyte': can't convert Bignum into String (TypeError)
        from -e:1:in `<main>'
```

The "TypeError" in the error message is because the testing ruby is old.  Now that Bignum is wiped out, I don't think this restriction is reasonable.

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-75898

* Author: gettalong (Thomas Leitner)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:90722] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
                   ` (2 preceding siblings ...)
  2018-12-26  0:48 ` [ruby-core:90721] " shyouhei
@ 2018-12-26  1:24 ` shyouhei
  2018-12-26  1:44 ` [ruby-core:90723] " shyouhei
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: shyouhei @ 2018-12-26  1:24 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by shyouhei (Shyouhei Urabe).


Apology for the previous comment.  It shows IO#ungetbyte example.  I confused them because I fixed them the same day for the same reason.  The same thing happens for String#setbyte.

```
% ruby -v -e 'p "foo".setbyte(0,18446744073709551616)'
ruby 1.9.3p551 (2014-11-13) [x86_64-darwin15.6.0]
-e:1:in `setbyte': bignum too big to convert into `long' (RangeError)
        from -e:1:in `<main>'
```

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-75899

* Author: gettalong (Thomas Leitner)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:90723] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
                   ` (3 preceding siblings ...)
  2018-12-26  1:24 ` [ruby-core:90722] " shyouhei
@ 2018-12-26  1:44 ` shyouhei
  2018-12-26 11:59 ` [ruby-core:90730] " eregontp
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: shyouhei @ 2018-12-26  1:44 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by shyouhei (Shyouhei Urabe).


We may want to define the behaviour of these methods without introducing fixnum / bignum distinction.  One possible way is:

```patch
Index: io.c
===================================================================
--- io.c	(revision 66566)
+++ io.c	(working copy)
@@ -4259,8 +4259,8 @@ rb_io_ungetbyte(VALUE io, VALUE b)
     GetOpenFile(io, fptr);
     rb_io_check_byte_readable(fptr);
     if (NIL_P(b)) return Qnil;
-    if (FIXNUM_P(b)) {
-        int i = FIX2INT(b);
+    if (RB_TYPE_P(b, T_FIXNUM) || RB_TYPE_P(b, T_BIGNUM)) {
+        int i = NUM2INT(rb_int_modulo(b, INT2FIX(256)));
         if (0 <= i && i <= UCHAR_MAX) {
             unsigned char cc = i & 0xFF;
             b = rb_str_new((const char *)&cc, 1);
Index: string.c
===================================================================
--- string.c	(revision 66566)
+++ string.c	(working copy)
@@ -5411,7 +5411,7 @@ static VALUE
 rb_str_setbyte(VALUE str, VALUE index, VALUE value)
 {
     long pos = NUM2LONG(index);
-    int byte = NUM2INT(value);
+    int byte = NUM2INT(rb_int_modulo(value, INT2FIX(256)));
     long len = RSTRING_LEN(str);
     char *head, *left = 0;
     unsigned char *ptr;
```

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-75900

* Author: gettalong (Thomas Leitner)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:90730] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
                   ` (4 preceding siblings ...)
  2018-12-26  1:44 ` [ruby-core:90723] " shyouhei
@ 2018-12-26 11:59 ` eregontp
  2018-12-28  8:32 ` [ruby-core:90772] " t_leitner
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: eregontp @ 2018-12-26 11:59 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by Eregon (Benoit Daloze).


I think it's good to be strict here, i.e., to raise RangeError when `str.setbyte(256)` or higher as that could very well be a bug in the calling code.
Negative values also sound buggy in most situations.

Why are values higher in HexaPDF? Does it mean multiple bytes need to be written or is it enough to throw away the high bits?
I suspect the latter is rarely correct.

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-75908

* Author: gettalong (Thomas Leitner)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: UNKNOWN, 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:90772] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
                   ` (5 preceding siblings ...)
  2018-12-26 11:59 ` [ruby-core:90730] " eregontp
@ 2018-12-28  8:32 ` t_leitner
  2019-01-11 14:33 ` [ruby-core:91023] [Ruby trunk Bug#15460][Assigned] " shyouhei
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: t_leitner @ 2018-12-28  8:32 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by gettalong (Thomas Leitner).


Eregon (Benoit Daloze) wrote:
> Why are values higher in HexaPDF? Does it mean multiple bytes need to be written or is it enough to throw away the high bits?
> I suspect the latter is rarely correct.

This actually happens in the predictor filter of HexaPDF (see https://github.com/gettalong/hexapdf/blob/master/lib/hexapdf/filter/predictor.rb#L166) which is an implementation of the PNG filter types (see https://www.w3.org/TR/2003/REC-PNG-20031110/#9Filter-types).

The PNG spec says that all operations are to be taken as unsigned arithmetic modulo 256 and since this is what `String#setbyte` originally did, I just left out the additional module operation.

It is not a huge problem for me and I will release a new HexaPDF version with the fix soon.

As for whether the modulo operation should be done by `String#setbyte`: Many methods automatically convert arguments to an expected type if possible, e.g. with `#to_str`. Converting an integer to a byte using modulo 256 seems like the most straight-forward way to do this for `String#setbyte`.

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-75945

* Author: gettalong (Thomas Leitner)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: DONTNEED, 2.5: DONTNEED, 2.6: REQUIRED
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:91023] [Ruby trunk Bug#15460][Assigned] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
                   ` (6 preceding siblings ...)
  2018-12-28  8:32 ` [ruby-core:90772] " t_leitner
@ 2019-01-11 14:33 ` shyouhei
  2019-01-17 21:36 ` [ruby-core:91144] [Ruby trunk Bug#15460] " naruse
  2019-12-02  0:41 ` [ruby-core:96049] [Ruby master " nobu
  9 siblings, 0 replies; 10+ messages in thread
From: shyouhei @ 2019-01-11 14:33 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by shyouhei (Shyouhei Urabe).

Status changed from Open to Assigned
Assignee set to shyouhei (Shyouhei Urabe)

I had a chance this week to ask matz if he wants to allow bigger inputs or not for those methods.  He answered yes.  He prefers mod 256 behaviour for larger numbers.  I will fix them again.

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-76247

* Author: gettalong (Thomas Leitner)
* Status: Assigned
* Priority: Normal
* Assignee: shyouhei (Shyouhei Urabe)
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: DONTNEED, 2.5: DONTNEED, 2.6: REQUIRED
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:91144] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
                   ` (7 preceding siblings ...)
  2019-01-11 14:33 ` [ruby-core:91023] [Ruby trunk Bug#15460][Assigned] " shyouhei
@ 2019-01-17 21:36 ` naruse
  2019-12-02  0:41 ` [ruby-core:96049] [Ruby master " nobu
  9 siblings, 0 replies; 10+ messages in thread
From: naruse @ 2019-01-17 21:36 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by naruse (Yui NARUSE).

Backport changed from 2.4: DONTNEED, 2.5: DONTNEED, 2.6: REQUIRED to 2.4: DONTNEED, 2.5: DONTNEED, 2.6: DONE

ruby_2_6 r66845 merged revision(s) 66760,66761,66824.

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-76374

* Author: gettalong (Thomas Leitner)
* Status: Closed
* Priority: Normal
* Assignee: shyouhei (Shyouhei Urabe)
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: DONTNEED, 2.5: DONTNEED, 2.6: DONE
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [ruby-core:96049] [Ruby master Bug#15460] Behaviour of String#setbyte changed
       [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
                   ` (8 preceding siblings ...)
  2019-01-17 21:36 ` [ruby-core:91144] [Ruby trunk Bug#15460] " naruse
@ 2019-12-02  0:41 ` nobu
  9 siblings, 0 replies; 10+ messages in thread
From: nobu @ 2019-12-02  0:41 UTC (permalink / raw)
  To: ruby-core

Issue #15460 has been updated by nobu (Nobuyoshi Nakada).


On the 2.6 branch, this causes a declaration-after-statement warning.

----------------------------------------
Bug #15460: Behaviour of String#setbyte changed
https://bugs.ruby-lang.org/issues/15460#change-82898

* Author: gettalong (Thomas Leitner)
* Status: Closed
* Priority: Normal
* Assignee: shyouhei (Shyouhei Urabe)
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-linux]
* Backport: 2.4: DONTNEED, 2.5: DONTNEED, 2.6: DONE
----------------------------------------
I just installed Ruby 2.6.0 for benchmarking reasons and found that the change [string.c: setbyte silently ignores upper bits](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/65804) broke my library/application HexaPDF.

Before using String#setbyte I tested how it would respond to values lower than 0 or greater than 255 and found that it automatically performed the needed modulo 256 operation (at least up to Ruby 2.5.3). Therefore I left out the explicit modulo operation for performance reasons.

Would it make sense to change the String#setbyte implementation to perform the modulo operation? This would restore compatibility with prior Ruby versions and may be what people would expect.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-12-02  0:41 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <redmine.issue-15460.20181225102238@ruby-lang.org>
2018-12-25 10:22 ` [ruby-core:90700] [Ruby trunk Bug#15460] Behaviour of String#setbyte changed t_leitner
2018-12-26  0:38 ` [ruby-core:90720] " ko1
2018-12-26  0:48 ` [ruby-core:90721] " shyouhei
2018-12-26  1:24 ` [ruby-core:90722] " shyouhei
2018-12-26  1:44 ` [ruby-core:90723] " shyouhei
2018-12-26 11:59 ` [ruby-core:90730] " eregontp
2018-12-28  8:32 ` [ruby-core:90772] " t_leitner
2019-01-11 14:33 ` [ruby-core:91023] [Ruby trunk Bug#15460][Assigned] " shyouhei
2019-01-17 21:36 ` [ruby-core:91144] [Ruby trunk Bug#15460] " naruse
2019-12-02  0:41 ` [ruby-core:96049] [Ruby master " nobu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).