bquorning (Benjamin Quorning)
- Login: bquorning
- Email: benjamin@quorning.net
- Registered on: 11/12/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
09/08/2026
-
03:56 PM Ruby Revision 83185d33 (git): [ruby/json] Update documentation to match json 3.0 API
- json 3.0 changed `JSON.parse` to take keyword arguments instead of a
positional opts Hash, so some of the documented usage would now raise
`ArgumentError`. I have updated all such examples to use kwargs instead.
Also align documented ou...
01/16/2025
-
01:47 AM Ruby Bug #21044 (Closed): Prism maximum recursion depth is 1_000, parse.y is 10_000
- Applied in changeset commit:git|931a870606f4e286a1c7bacf022940994f3c431b.
----------
[ruby/prism] Increase value of PRISM_DEPTH_MAXIMUM to 10000
The previous value of 1_000 was added with a reference to the Bison
parser[^1], but the va... -
01:47 AM Ruby Revision 931a8706 (git): [ruby/prism] Increase value of PRISM_DEPTH_MAXIMUM to 10000
- The previous value of 1_000 was added with a reference to the Bison
parser[^1], but the value of YYMAXDEPTH in the Bison docs is 10_000,
not 1_000.
[^1]: https://www.gnu.org/software/bison/manual/html_node/Memory-Management.html
Fixes ...