[Python-checkins] bpo-21955: Change my nickname in BINARY_ADD comment (GH-22481)

Victor Stinner webhook-mailer at python.org
Thu Oct 1 12:57:45 EDT 2020


https://github.com/python/cpython/commit/bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee
commit: bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee
branch: master
author: Victor Stinner <vstinner at python.org>
committer: GitHub <noreply at github.com>
date: 2020-10-01T18:57:37+02:00
summary:

bpo-21955: Change my nickname in BINARY_ADD comment (GH-22481)

files:
M Python/ceval.c

diff --git a/Python/ceval.c b/Python/ceval.c
index 6bd2d6bc13d86..7c6cf83bc9ac0 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1701,7 +1701,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int throwflag)
             PyObject *right = POP();
             PyObject *left = TOP();
             PyObject *sum;
-            /* NOTE(haypo): Please don't try to micro-optimize int+int on
+            /* NOTE(vstinner): Please don't try to micro-optimize int+int on
                CPython using bytecode, it is simply worthless.
                See http://bugs.python.org/issue21955 and
                http://bugs.python.org/issue10044 for the discussion. In short,



More information about the Python-checkins mailing list