Skip to content

Commit dcee323

Browse files
committed
fix translation
1 parent a6ba74e commit dcee323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pypy/module/mamba/bigbits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ def _descr_ilshift(self, space, w_other):
669669
raise oefmt(space.w_ValueError, "Bitwidth of LHS must be equal to RHS during <<= non-blocking assignment, "
670670
"but here LHS Bits%d < RHS Bits%d.\n"
671671
"- Suggestion: LHS <<= zext/sext(RHS, nbits/Type)", nbits, w_other_bits.nbits)
672-
sefl.next_bigval = w_other_bits.bigval
672+
self.next_bigval = w_other_bits.bigval
673673

674674
elif isinstance(w_other_bits, W_SmallBits):
675675
raise oefmt(space.w_ValueError, "Bitwidth of LHS must be equal to RHS to_bits() during <<= non-blocking assignment, "

0 commit comments

Comments
 (0)