This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author yselivanov
Recipients Mark.Shannon, barry, corona10, methane, nascheme, pablogsal, vstinner, yselivanov
Date 2020-10-22.19:48:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603396127.61.0.147023086534.issue42115@roundup.psfhosted.org>
In-reply-to
Content
> This idea can be implemented without opcode cache. I will try it.

I'd actually encourage trying to use the opcode cache because this way the optimization will be more generic. E.g. `decimal + decimal` would also be specialized via the cache, because you'd cache a pointer to the specific `+` operator implementation. I'm really not sure that adding specialized byte code is a good idea.

> * PHP uses scalar type for float and int

While at it, maybe we push the number of bits per int digit to 60?

While at it, I'd also increase the digit size
History
Date User Action Args
2020-10-22 20:03:29yselivanovunlinkissue42115 messages
2020-10-22 19:48:47yselivanovsetrecipients: + yselivanov, barry, nascheme, vstinner, methane, Mark.Shannon, corona10, pablogsal
2020-10-22 19:48:47yselivanovsetmessageid: <1603396127.61.0.147023086534.issue42115@roundup.psfhosted.org>
2020-10-22 19:48:47yselivanovlinkissue42115 messages
2020-10-22 19:48:47yselivanovcreate