Skip to content

Commit 398808d

Browse files
author
rocky
committed
NB_REMAINDER->NB_MODULO
MODULO is used in the opcode name so it should be used in the NB name as well
1 parent 2320aa8 commit 398808d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xdis/opcodes/opcode_311.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# (C) Copyright 2024
1+
# (C) Copyright 2024-2025
22
# by Rocky Bernstein
33
#
44
# This program is free software; you can redistribute it and/or
@@ -57,7 +57,7 @@
5757
("NB_LSHIFT", "<<"),
5858
("NB_MATRIX_MULTIPLY", "@"),
5959
("NB_MULTIPLY", "*"),
60-
("NB_REMAINDER", "%"),
60+
("NB_MODULO", "%"),
6161
("NB_OR", "|"),
6262
("NB_POWER", "**"),
6363
("NB_RSHIFT", ">>"),
@@ -70,7 +70,7 @@
7070
("NB_INPLACE_LSHIFT", "<<="),
7171
("NB_INPLACE_MATRIX_MULTIPLY", "@="),
7272
("NB_INPLACE_MULTIPLY", "*="),
73-
("NB_INPLACE_REMAINDER", "%="),
73+
("NB_INPLACE_MODULO", "%="),
7474
("NB_INPLACE_OR", "|="),
7575
("NB_INPLACE_POWER", "**="),
7676
("NB_INPLACE_RSHIFT", ">>="),

0 commit comments

Comments
 (0)