1
I Use This!
Low Activity

Commits : Listings

Analyzed about 6 hours ago. based on code collected 1 day ago.
Jun 09, 2025 — Jun 09, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
fix: the code argument to `python.exec`/`eval` needs to be a well-formed string More... over 1 year ago
fix: `PyUnicodeObject` needs to be well-formed in a debug build of CPython More... over 1 year ago
fix: `PyEventLoop`'s destructor should not use any Python API, after the GIL is already handed over to another thread More... over 1 year ago
fix: to fix memory corruption, use `PyUnicode_AsUTF8AndSize` with the string size when possible More... over 1 year ago
fix: `PyUnicode_AsUTF8` needs a strict Python str object (not a subtype) More... over 1 year ago
fix: to fix memory corruption, use `PyUnicode_AsUTF8AndSize` with the string size when possible More... over 1 year ago
fix: clean up SpiderMonkey when the PythonMonkey module gets destroyed More... over 1 year ago
fix: accessing a non-existent property on a Python `bytes` in JS land should return `undefined` instead of throwing a Python error More... over 1 year ago
fix: `Py_XDECREF` requires the GIL to be held, but it's unavailable after Python finalization More... over 1 year ago
refactor: move `_PyErr_SetKeyError` shim to pyshim.hh More... over 1 year ago
refactor: keep using `_PyErr_SetKeyError` in Python < 3.13 More... over 1 year ago
refactor: use the `_PyDictView_New` function in Python < 3.13 More... over 1 year ago
fix: `_PyArg_CheckPositional` may also be when unpacking a tuple More... over 1 year ago
feat: keep track of the local variables inside Python `eval`/`exec` to a dict More... over 1 year ago
feat: to get the running event-loop in Python 3.13 is as simple as `thread_state->asyncio_running_loop` More... over 1 year ago
refactor: `_getLoopOnThread` getting thread dict More... over 1 year ago
get rid of the build warnings More... over 1 year ago
fix: replacement for the `_PyThreadState_GetDict(tstate)` API in Python 3.13 More... over 1 year ago
fix: `_PyThreadState_GetDict(tstate)` API gets removed in Python 3.13 More... over 1 year ago
fix: `_PyArg_UnpackKeywords` API is removed, use `PyArg_ParseTupleAndKeywords` instead More... over 1 year ago
fix: `_PyArg_UnpackKeywords` API is removed, use `PyArg_ParseTupleAndKeywords` instead More... over 1 year ago
Revert "refactor: shim for `_PyArg_CheckPositional`" More... over 1 year ago
refactor: shim for `_PyArg_CheckPositional` More... over 1 year ago
refactor: move the `_PyDictView_New` shim to pyshim.hh More... over 1 year ago
fix: `_PyArg_CheckPositional` function became an internal API since Python 3.13 More... over 1 year ago
Revert "WIP: remove the use of the `_PyArg_CheckPositional` private API" More... over 1 year ago
fix: `Py_NewRef` API is not available in Python < 3.10 More... over 1 year ago
fix: `_PyDictViewObject` typedef redefinition with different types on Python < 3.13 More... over 1 year ago
WIP: `_PyArg_UnpackKeywords` is removed More... over 1 year ago
WIP: `_PyThreadState_GetDict(tstate)` API gets removed in Python 3.13 More... over 1 year ago