Skip to content

Commit fd95518

Browse files
committed
fixup
1 parent 138184d commit fd95518

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Python/bytecodes.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ dummy_func(
253253
ERROR_IF(res == NULL, error);
254254
}
255255

256-
inst(UNARY_NOT, (value -- res)) { // XXX
256+
inst(UNARY_NOT, (value -- res)) {
257257
int err = PyObject_IsTrue(value);
258258
DECREF_INPUTS();
259259
ERROR_IF(err < 0, error);
@@ -2014,7 +2014,7 @@ dummy_func(
20142014
CHECK_EVAL_BREAKER();
20152015
}
20162016

2017-
inst(POP_JUMP_IF_FALSE, (cond -- )) { // XXX
2017+
inst(POP_JUMP_IF_FALSE, (cond -- )) {
20182018
if (Py_IsFalse(cond)) {
20192019
JUMPBY(oparg);
20202020
}
@@ -2030,7 +2030,7 @@ dummy_func(
20302030
}
20312031
}
20322032

2033-
inst(POP_JUMP_IF_TRUE, (cond -- )) { // XXX
2033+
inst(POP_JUMP_IF_TRUE, (cond -- )) {
20342034
if (Py_IsTrue(cond)) {
20352035
JUMPBY(oparg);
20362036
}
@@ -2046,14 +2046,14 @@ dummy_func(
20462046
}
20472047
}
20482048

2049-
inst(POP_JUMP_IF_NOT_NONE, (value -- )) { // XXX
2049+
inst(POP_JUMP_IF_NOT_NONE, (value -- )) {
20502050
if (!Py_IsNone(value)) {
20512051
DECREF_INPUTS();
20522052
JUMPBY(oparg);
20532053
}
20542054
}
20552055

2056-
inst(POP_JUMP_IF_NONE, (value -- )) { // XXX
2056+
inst(POP_JUMP_IF_NONE, (value -- )) {
20572057
if (Py_IsNone(value)) {
20582058
JUMPBY(oparg);
20592059
}

0 commit comments

Comments
 (0)