Skip to content

Commit b0eae59

Browse files
authored
Merge pull request #163 from damenhello/master
opname == "%="
2 parents 553b1a4 + ed9abb6 commit b0eae59

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

xdis/opcodes/opcode_311.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ def extended_format_BINARY_OP(opc, instructions) -> Tuple[str, Optional[int]]:
246246
opname = _nb_ops[instructions[0].argval][1]
247247
if opname == "%":
248248
opname = "%%"
249+
elif opname == "%=":
250+
opname = "%%="
249251
return extended_format_binary_op(opc, instructions, f"%s {opname} %s")
250252

251253

0 commit comments

Comments
 (0)