Skip to content

Commit db3e990

Browse files
authored
gh-146393: Remove special character in optimizer_bytecodes.c (#148693)
1 parent 446edda commit db3e990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/optimizer_bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ dummy_func(void) {
300300
// narrowing unlocks a meaningful downstream win:
301301
// - NB_TRUE_DIVIDE: enables the specialized float path below.
302302
// - NB_REMAINDER: lets the float result type propagate.
303-
// NB_POWER is excluded speculative guards there regressed
303+
// NB_POWER is excluded: speculative guards there regressed
304304
// test_power_type_depends_on_input_values (GH-127844).
305305
if (is_truediv || is_remainder) {
306306
if (!sym_has_type(rhs)

0 commit comments

Comments
 (0)