]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-21955: Change my nickname in BINARY_ADD comment (GH-22481)
authorVictor Stinner <vstinner@python.org>
Thu, 1 Oct 2020 16:57:37 +0000 (18:57 +0200)
committerGitHub <noreply@github.com>
Thu, 1 Oct 2020 16:57:37 +0000 (18:57 +0200)
Python/ceval.c

index 6bd2d6bc13d86f124fba2deedda7981039006f8c..7c6cf83bc9ac01282a0552fca6f0a8ac5ef69383 100644 (file)
@@ -1701,7 +1701,7 @@ main_loop:
             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,