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

This commit is contained in:
Victor Stinner 2020-10-01 18:57:37 +02:00 committed by GitHub
parent 58a7da9e12
commit bd0a08ea90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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,