From 4424b4d9e3d3c103f6622bf2c293d011086764fe Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 1 Oct 2020 18:32:35 +0200 Subject: [PATCH] bpo-21955: Change my nickname in BINARY_ADD comment --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 6bd2d6bc13d86f..7c6cf83bc9ac01 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,