Tyler Kennedy

Results 206 comments of Tyler Kennedy

So does the new job get the minimum denounce duration, since it started longer than the window, or the maximum, since it's still running? If the task runtime exceeds the...

Unfortunately we only keep a reference count, since tracking with more detail would be a significant performance and potentially significant memory hit. Version 7.0.0 (#124) switches to using the new(ish)...

Looking through the code, it's possible I've very much misunderstood the intention of `INSITU`. From the documentation: > Read the input data in-situ. This option allows the reader to modify...

`#define YYJSON_READER_ESTIMATED_MINIFY_RATIO 10000` resulted in a tighter curve, but the final size is unchanged. I think something is up here or the size of a yyjson_val is much larger than...

Likewise, it's guaranteed to occur during the CI/CD tests in Chancy (https://github.com/TkTech/chancy/actions/runs/13992110608/job/39178225688) when run with coverage.py, and is fixed by this PR. However, I haven't been able to produce a...

> I'm willing to do the digging, but it would be nice if one of you could at least isolate the bug down to a single case in your test...

> Example: https://github.com/TkTech/pysimdjson/blob/5dbc1bfd9fcaff0d3bf1c25e6cd35448691fdbdb/pyproject.toml I believe you'd lose support for a few of your currently supported versions of Python, since the features I use in the pysimdjson pyproject.toml for building extensions...

I've been encountering this issue reliably 100% of the time with the PyCharm pydevd debugger. Applying the following patch to `threading.py` to keep a reference to the active dict and...

This bit of code is incomplete, it's a reduced version of a more complex optimization. Almost all of the time reading a typical large JSON document in Python (all python...

Sorry if I wasn't clear - the _old_ code is incomplete. I stripped out most of the work to get a release out with other fixes and never came back...