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:03:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641502985.48.0.892800507091.issue46280@roundup.psfhosted.org>
In-reply-to
Content
#584 and #585: The code is correct but there are dead stores only when the asserts are turned off:

  2635.     carry = v_lshift(w->ob_digit, w1->ob_digit, size_w, d);
  2636.     assert(carry == 0);

Elsewhere we use ifdefs around code like this to suppress warnings about unused variables.  In this case though, it would be messy and cause code duplication.
History
Date User Action Args
2022-01-06 21:03:05rhettingersetrecipients: + rhettinger, terry.reedy, eric.smith, serhiy.storchaka, pablogsal, nanjekyejoannah
2022-01-06 21:03:05rhettingersetmessageid: <1641502985.48.0.892800507091.issue46280@roundup.psfhosted.org>
2022-01-06 21:03:05rhettingerlinkissue46280 messages
2022-01-06 21:03:05rhettingercreate