takaram (Takuya Aramaki)
- Login: takaram
- Registered on: 01/31/2019
- Last sign in: 02/08/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
01/01/2024
02/08/2022
-
04:33 PM Ruby Bug #18577 (Closed): Range#include? returns wrong result for beginless range with exclusive string end
- Exclusive range should not include the end value, but `(...'z').include? 'z'` returns true. `member?` and `===` behave in the same way, while `cover?` does not.
This happens when the range is beginless and its end is string.
```
irb...
01/31/2019
-
09:58 AM Ruby Bug #15576 (Closed): Wrong error message from some class methods of `Dir`
- When a error is raised in some class methods of `Dir`, the backtrace is as if the user called `Dir.open`.
```
$ ruby -e 'Dir.foreach {}'
Traceback (most recent call last):
2: from -e:1:in `<main>'
1: from -e:1:in `foreach'
-e:1...