diff options
author | Victor Stinner <vstinner@python.org> | 2020-10-01 18:57:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 18:57:37 +0200 |
commit | bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee (patch) | |
tree | d5181aa22d2c1c412b4a37c8a42751473c6f0c77 /Python/ceval.c | |
parent | bpo-26680: Incorporate is_integer in all built-in and standard library numeri... (diff) | |
download | cpython-bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee.tar.gz cpython-bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee.tar.bz2 cpython-bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee.zip |
bpo-21955: Change my nickname in BINARY_ADD comment (GH-22481)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 6bd2d6bc13d..7c6cf83bc9a 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, |