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
PyBytes_FromStringAndSize creates an uninitialized PyBytes object when PyBytes_FromStringAndSize(NULL, n) is called. Since the underlying bytes can't be initialized later from the HPy API we should return HPy_NULL and set an exception instead.
PyBytes_FromStringAndSize creates an uninitialized PyBytes object when
PyBytes_FromStringAndSize(NULL, n)
is called. Since the underlying bytes can't be initialized later from the HPy API we should return HPy_NULL and set an exception instead.This is already done in the PyPy implementation -- see https://foss.heptapod.net/pypy/pypy/-/merge_requests/778.
The text was updated successfully, but these errors were encountered: