This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients eric.smith, nanjekyejoannah, pablogsal, rhettinger, zach.ware
Date 2022-01-06.19:23:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641497018.51.0.61037762207.issue46280@roundup.psfhosted.org>
In-reply-to
Content
#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).
History
Date User Action Args
2022-01-06 19:23:38rhettingersetrecipients: + rhettinger, eric.smith, zach.ware, pablogsal, nanjekyejoannah
2022-01-06 19:23:38rhettingersetmessageid: <1641497018.51.0.61037762207.issue46280@roundup.psfhosted.org>
2022-01-06 19:23:38rhettingerlinkissue46280 messages
2022-01-06 19:23:38rhettingercreate