From ab45919812340c32ed4fb9ba9ca9962f4c5514b0 Mon Sep 17 00:00:00 2001 From: Ken Jin Date: Wed, 15 Apr 2026 20:58:35 +0800 Subject: [PATCH] gh-148609: Remove unicode character in bytecodes.c (GH-148611) Remove unicode character in bytecodes.c --- Python/bytecodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 6dfa61b5f9c..9f2236610d9 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -895,7 +895,7 @@ dummy_func( INPUTS_DEAD(); } - // Float true division — not specialized at tier 1, emitted by the + // Float true division --- not specialized at tier 1, emitted by the // tier 2 optimizer when both operands are known floats. tier2 op(_BINARY_OP_TRUEDIV_FLOAT, (left, right -- res, l, r)) { PyObject *left_o = PyStackRef_AsPyObjectBorrow(left);