]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-148609: Remove unicode character in bytecodes.c (GH-148611)
authorKen Jin <kenjin@python.org>
Wed, 15 Apr 2026 12:58:35 +0000 (20:58 +0800)
committerGitHub <noreply@github.com>
Wed, 15 Apr 2026 12:58:35 +0000 (12:58 +0000)
Remove unicode character in bytecodes.c

Python/bytecodes.c

index 6dfa61b5f9caf862d6fa95e18c9458a73bb5a9e0..9f2236610d970a88bbb932b1b702a2b690122672 100644 (file)
@@ -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);