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
{{ message }}
This repository was archived by the owner on Jan 13, 2021. It is now read-only.
Python lists make bad queues. Rather than being linked-lists they're
actually fancy arrays. This means popping from the left (which frame
queues do) requires that the array be resized and potentially
reallocated. We should avoid some of that memory churn.
0 commit comments