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, serhiy.storchaka, terry.reedy
Date 2022-01-06.21:06:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641503207.52.0.913197227918.issue46280@roundup.psfhosted.org>
In-reply-to
Content
#606 is similar to #584 and #585.  The "dead store" is used only in an assertion:

            have_dict = 1;    <== Presumed dead store
        }
        assert(have_dict);    <== Used in an assert

In the case, it would be reasonable to add an #ifdef.
History
Date User Action Args
2022-01-06 21:06:47rhettingersetrecipients: + rhettinger, terry.reedy, eric.smith, serhiy.storchaka, pablogsal, nanjekyejoannah
2022-01-06 21:06:47rhettingersetmessageid: <1641503207.52.0.913197227918.issue46280@roundup.psfhosted.org>
2022-01-06 21:06:47rhettingerlinkissue46280 messages
2022-01-06 21:06:47rhettingercreate