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
Can we use the Python buffer interface for __next__/loop/dispatch to save copying the packet to a bytes? Ownership is troublesome since the data is only valid until the next call to __next__ or returning from the callback. Also we want the returned object to have a nice interface and not be something that will always be immediately casted to bytes to make any use of it.
The text was updated successfully, but these errors were encountered:
Can we use the Python buffer interface for
__next__
/loop
/dispatch
to save copying the packet to a bytes? Ownership is troublesome since the data is only valid until the next call to__next__
or returning from the callback. Also we want the returned object to have a nice interface and not be something that will always be immediately casted to bytes to make any use of it.The text was updated successfully, but these errors were encountered: