We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2320aa8 commit 398808dCopy full SHA for 398808d
xdis/opcodes/opcode_311.py
@@ -1,4 +1,4 @@
1
-# (C) Copyright 2024
+# (C) Copyright 2024-2025
2
# by Rocky Bernstein
3
#
4
# This program is free software; you can redistribute it and/or
@@ -57,7 +57,7 @@
57
("NB_LSHIFT", "<<"),
58
("NB_MATRIX_MULTIPLY", "@"),
59
("NB_MULTIPLY", "*"),
60
- ("NB_REMAINDER", "%"),
+ ("NB_MODULO", "%"),
61
("NB_OR", "|"),
62
("NB_POWER", "**"),
63
("NB_RSHIFT", ">>"),
@@ -70,7 +70,7 @@
70
("NB_INPLACE_LSHIFT", "<<="),
71
("NB_INPLACE_MATRIX_MULTIPLY", "@="),
72
("NB_INPLACE_MULTIPLY", "*="),
73
- ("NB_INPLACE_REMAINDER", "%="),
+ ("NB_INPLACE_MODULO", "%="),
74
("NB_INPLACE_OR", "|="),
75
("NB_INPLACE_POWER", "**="),
76
("NB_INPLACE_RSHIFT", ">>="),
0 commit comments