surusek (Łukasz Sur)
- Login: surusek
- Registered on: 07/08/2024
- Last sign in: 07/08/2024
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/08/2024
-
12:11 PM Ruby Bug #20614 (Rejected): Integer#size returns incorrect values on 64-bit Windows
- According to the ruby/spec, `0.size` should return size of the machine word in bytes, but on x64-mswin64_140 (both release 3.3.3 and git revision 02c4f0c89d) it doesn't. Following example:
``` ruby
a, b = 0.size, [0].pack('J').length...