https://github.com/python/cpython/commit/ab45919812340c32ed4fb9ba9ca9962f4c5514b0
commit: ab45919812340c32ed4fb9ba9ca9962f4c5514b0
branch: main
author: Ken Jin <[email protected]>
committer: Fidget-Spinner <[email protected]>
date: 2026-04-15T12:58:35Z
summary:

gh-148609: Remove unicode character in bytecodes.c (GH-148611)

Remove unicode character in bytecodes.c

files:
M Python/bytecodes.c

diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index 6dfa61b5f9caf8..9f2236610d970a 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);

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to