Raymond Hettinger <raymond.hettin...@gmail.com> added the comment:

#244 is a false positive.  The value of new_state[i] on line 454 was 
initialized on line 442 with: new_state[i] = (uint32_t)element.

#387 is also a false positive.  There is an assertion on the previous line that 
the item != NULL.  That assertion passes because item is the result of a call 
to deque_popleft() which only returns NULL when the size is zero; however, 
deque_del_item() is not ever called with size 0 and it has an assertion to that 
effect.  The two callers are deque_remove() and deque_ass_item().  Both calls 
are guarded by regular tests (not assertions) so that they are only called when 
the index >= 0 and index < len(deque).

----------
nosy: +rhettinger

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue46280>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to