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

#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.

----------

_______________________________________
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