slowpilot (Ivan Razuvaev)
- Login: slowpilot
- Registered on: 07/06/2021
- Last sign in: 02/01/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/07/2021
-
06:35 PM Ruby Bug #18023: Ractor#make_shareable changes the values of closured shareable objects
- slowpilot (Ivan Razuvaev) wrote:
> Hi. I encountered strange behaviour or shareable procs when every even closured shareable variable becomes the FalseClass instance.
> ...
This is stopping from using dynamically defined methods from r...
07/06/2021
-
02:28 PM Ruby Bug #18023 (Closed): Ractor#make_shareable changes the values of closured shareable objects
- Hi. I encountered strange behaviour or shareable procs when every even closured shareable variable becomes the FalseClass instance.
``` ruby
[usr@srvr ~]$ irb
3.0.1 :001 > v1, v2, v3, v4 = :a, :b, :c, :d
=> [:a, :b, :c, :d]
3.0....