[issue46192] Optimize builtin functions min() and max()

2021-12-31 Thread Dennis Sweeney
Dennis Sweeney added the comment: Kind of like what's mentioned at https://github.com/faster-cpython/ideas/discussions/131 , it may be interesting to explore implementing min()/max() in Pure python, considering recent specializations to COMPARE_OP, and potential future specializations of FOR

[issue46192] Optimize builtin functions min() and max()

2021-12-30 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Repeating my comment on GH-30286: If we are touching `min()` and `max()`, it would make sense, IMO, to port them to Argument Clinic. FTR, Argument Clinic got `*args` support in GH-18609 / bpo-20291. @colorfulappl made a "competing" branch using AC on his

[issue46192] Optimize builtin functions min() and max()

2021-12-29 Thread colorfulappl
Change by colorfulappl : -- keywords: +patch pull_requests: +28500 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30286 ___ Python tracker ___ ___

[issue46192] Optimize builtin functions min() and max()

2021-12-29 Thread colorfulappl
Change by colorfulappl : -- type: -> performance ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue46192] Optimize builtin functions min() and max()

2021-12-29 Thread colorfulappl
New submission from colorfulappl : https://github.com/faster-cpython/ideas/discussions/199 -- components: Interpreter Core messages: 409299 nosy: colorfulappl priority: normal severity: normal status: open title: Optimize builtin functions min() and max() versions: Python 3.11