You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check all invocations of PyObject_IsTrue, can return -1 on error.
Move framework bindings to vectorcall
Investigate all use of PyErr_Occurred, adjust internal API to avoid using it
Check all XXX comments
Audit contents of python-api-usage.h (add any new APIs used, mark unwanted APIs as unavailable)
- In "recent enough" versions of Python a number of singletons (Py_None, ...) are immortal and don't need reference count updates, use this to simplify code returning these values (should also be slightly faster in free threading builds).
Look into all access of the ob_refcnt field (Py_REFCNT and Py_SET_REFCNT)
Switch to PyTuple_Pack instead of PyTuple_New + PyTuple_SET_ITEM (where possible)
The text was updated successfully, but these errors were encountered:
documentation/example updates that reflect resolution of #275 are tasks that are appropriate for the next major release. these could become part of this issue after shortening its title.
offering to help, but my newest macOS is 11.7 and i've been late before :-)
The text was updated successfully, but these errors were encountered: