summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-10-01 16:57:37 (GMT)
committerGitHub <noreply@github.com>2020-10-01 16:57:37 (GMT)
commitbd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee (patch)
treed5181aa22d2c1c412b4a37c8a42751473c6f0c77 /Python
parent58a7da9e125422323f79c4ee95ac5549989d8162 (diff)
downloadcpython-bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee.zip
cpython-bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee.tar.gz
cpython-bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee.tar.bz2
bpo-21955: Change my nickname in BINARY_ADD comment (GH-22481)
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 6bd2d6b..7c6cf83 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -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,